-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.82 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Do it</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./Assets/favIco.png" type="image/x-icon">
</head>
<body>
<section id="container" class="main-container">
<div id="div1" class="main-div">
<header id="header" class="header-section">
<div id="weather" class="weather-widget">
<h3 id="city-name">Cidade</h3>
<p id="temperature">Temperatura: --°C</p>
<p id="description" style="visibility: hidden; display: none;"></p>
<img id="weather-icon" src="Assets/Wheater/erro-na-nuvem.png" alt="Ícone do clima" style="width: 50px; height: 50px;">
</div>
<div id="current-date"></div>
<div id="hours"></div>
</header>
<div id="task-section">
<div id="task-child">
<input id="input-task" type="text" placeholder="Hoje devo fazer...">
<button id="add-task-button" title="Adicionar Tarefa">Adicionar</button>
<img id="arrow" src="Assets/arrow.png" style="visibility: hidden;" >
<div class="list-section">
<ul class="list-task">
</ul>
</div>
</div>
</div>
</div>
</section>
<footer>
<div>
<p>Desenvolvido por: <a href="https://github.com/JoseAugustoScherer">José Augusto Scherer</a></p>
<p>© Todos direitos reservados</p>
</div>
</footer>
<script src="script.js" ></script>
</body>
</html>