-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (66 loc) · 2.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./assets/script.js" defer></script> <!-- [defer] aguarda o html ser carregado por completo -->
<link rel="stylesheet" href="./assets/style.css">
<title>Contador Regressivo v0.7 - BLUE EdTech!!</title>
</head>
<body>
<div class="tudo">
<header>
<div class="header">
<img src="./assets/img/logo-blue-croped.gif" alt="header">
<h1>Contador Regressivo v0.7 - BLUE EdTech!!</h1>
</div>
</header>
<section>
<div class="section_esquerda">
<div id="tempo">
<div>
<h1>Digite o tempo para o contador:</h1>
</div>
<div>
<input type="text" name="tempo_duracao" id="duracao_id" required /> <br />
<input type="submit" onclick="iniciar_cronometro()" value="Começar!!!" />
</div>
</div>
</div>
<div class="section_centro">
<div id="timer" class="cor_contador">
00:00
</div>
<div id="">
<p id="resposta"></p>
</div>
<div class="musica">
<iframe class="youtube" width="426" height="240" src=" " title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="section_direita">
<div class="video">
<h1>Cole aqui o link para reproduzir o video do Youtube!!</h1>
<input id="video" type="text" name="video" id="video" required/>
</div>
</div>
</section>
<footer>
<div class="rodape">
<div>
<h1>Rafael F. Kaminski</h1><br />
</div>
<div class="rs">
<div><a href="https://www.facebook.com/profile.php?id=100001836163599" target="_blank"><img src="./assets/img/logo_face.png" /></a></div>
<div><a href="https://www.instagram.com/rafael_kaminski_82/" target="_blank"><img src="./assets/img/logo_insta.png" /></a></div>
<div><a href="https://www.linkedin.com/in/rafael-fragozo-kaminski-236013206/" target="_blank"><img src="./assets/img/logo_linkedin.png" /></a></div>
<div>...</div>
</div>
</div>
<!-- <div class="rodape"> -->
<!-- </div> -->
</footer>
</div>
</body>
</html>