Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added quinzena2/labetube/img/lupa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena2/labetube/img/v8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions quinzena2/labetube/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles.css">
<title>Document</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<div class="row1">
<div class="thumbnail">
<a href="video1.html"><img src="./img/v1.png" alt="video1" id="thumbnail"> </a>
<p>Media 1</p>
</div>
<div class="thumbnail">
<a href="video2.html"><img src="./img/v2.png" alt="video2" id="thumbnail"></a>
<p>Media 2</p>
</div>
<div class="thumbnail">
<a href="video3.html"><img src="./img/v3.png" alt="video3" id="thumbnail"></a>
<p>Media 3</p>
</div>
<div class="thumbnail">
<a href="video4.html"><img src="./img/v4.png" alt="video4" id="thumbnail"></a>
<p>Media 4</p>
</div>
</div>
<div class="row2">
<div class="thumbnail">
<a href="video5.html"><img src="./img/v5.png" alt="video5" id="thumbnail"></a>
<p>Media 5</p>
</div>
<div class="thumbnail">
<a href="video6.html"><img src="./img/v6.png" alt="video6" id="thumbnail"></a>
<p>Media 6</p>
</div>
<div class="thumbnail">
<a href="video7.html"><img src="./img/v7.png" alt="video7" id="thumbnail"></a>
<p>Media 7</p>
</div>
<div class="thumbnail">
<a href="video8.html"><img src="./img/v8.png" alt="video8" id="thumbnail"></a>
<p>Media 8</p>
</div>
</div>

</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>

</body>
</html>
82 changes: 82 additions & 0 deletions quinzena2/labetube/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
*{
margin: 0;
padding: 0;
}
body{
height: 100vh;
width: 100vw;
}
header{
display: flex;
width: 100%;
background-color: purple;
justify-content: space-between;
align-items: center;
padding: 2vh;
}

h1{
font-family: 'Segoe UI', sans-serif;
color: white;
}

h3{
font-family: 'Segoe UI', sans-serif;
color: white;
}
input{
height: 2vh;
margin-right: 5vw;
}

#search2{
height: 2vh;
}


main{
display: flex;
height: 90vh;
width: 90vw;
flex-direction: column;
justify-content: space-around;

}

#thumbnail{
height: 30vh;
width: 20vw;
}
.thumbnail{
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Segoe UI', sans-serif;
font-size: 16px;
}
.row1{
display: flex;
flex-direction: row;
justify-content: space-around;
height: 20vh;
width: 99vw;
}

.row2{
display: flex;
flex-direction: row;
justify-content: space-around;
height: 20vh;
width: 99vw;
}

footer{
display: flex;
flex-direction: column;
background-color: purple;
justify-content: flex-end;
align-items: center;
padding: 20px;
margin-top: 20px;

}
27 changes: 27 additions & 0 deletions quinzena2/labetube/video1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 1</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/1.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 2</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/2.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 3</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/3.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 4</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/4.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 5</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/5.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 6</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/6.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video7.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 7</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/7.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
27 changes: 27 additions & 0 deletions quinzena2/labetube/video8.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="videos.css">
<title>Labetube</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><h1>Labetube</h1></a>
</div>
<div class="search">
<img src="./img/lupa.png" alt="magnifying glass" id="search2">
<input type="text">
</div>
</header>
<main>
<h2>Media <br> 8</h2>
<video src="https://storage.googleapis.com/future-apis.appspot.com/8.mp4" autoplay muted></video>
</main>
<footer>
<h3>É biscoito e não bolacha</h3>
</footer>
</body>
</html>
Loading