Skip to content
This repository was archived by the owner on Jan 15, 2020. It is now read-only.
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
37 changes: 37 additions & 0 deletions exercicio1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

html {
height: 100vh;
width: 100vw;
}

body {
height: 100%;
width: 100%;
}

header {
width: 100%;
text-align: left;
font-size: 30px;
color: white;
background-color: orange;
}

section {
flex-flow: column wrap;
text-align: center;
font-size: 20px;
color:black;

}

.videos {
max-width: 800px;
max-height: 800px;
width: 150px;
height: 150px;
flex-flow: column wrap;


}

61 changes: 61 additions & 0 deletions exercicio1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="exercicio1.css">
<title>Document</title>
</head>

<body>
<header>FutureTube</header>

<section>
<div>
<span><b>Confira o Top Nine Bouman:</b></span> <label for="busca">lupa.jpeg</label><input type="text" name="busca" id="busca">
</div>
<div class="videos">
<p>Curta a paisagem...</p>
<video src="http://soter.ninja/videos/1.mp4" controls ></video>
</div>
<div class="videos">
<p>Viaje na maionese...</p>
<video src="http://soter.ninja/videos/2.mp4" controls ></video>
</div>
<div>
<p>Dá uma boa olhada nisso...</p>
<video src="http://soter.ninja/videos/3.mp4" controls ></video>
</div>
<div>
<p>Momento de descontração...</p>
<video src="http://soter.ninja/videos/4.mp4" controls ></video>
</div>
<div>
<p>Huuummmm...</p>
<video src="http://soter.ninja/videos/5.mp4" controls ></video>
</div>
<div>
<p>Olha ele...</p>
<video src="http://soter.ninja/videos/6.mp4" controls ></video>
</div>
<div>
<p>Marmeninu, olhe iissoo...</p>
<video src="http://soter.ninja/videos/7.mp4" controls ></video>
</div>
<div>
<p>Vem cá, dá uma olhadinha...</p>
<video src="http://soter.ninja/videos/8.mp4" controls></video>
</div>
<div>
<p>E ainda disseram que eu estava na pior...</p>
<video src="http://soter.ninja/videos/9.mp4" controls></video>
</div>
</section>

<footer><u>Quer embarcar nessa viagem?</u>Entre em contato conosco,<b>clicando aqui.</b></footer>

</body>

</html>
1 change: 1 addition & 0 deletions semana3-aula2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Juliana-Carvalho