-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Crie uma lista de tarefas ou itens" />
<title>To-Do-List</title>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com"/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&family=Open+Sans:wght@300&family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="media-760.css">
<link class="icon" rel="icon" href="https://www.svgrepo.com/show/231594/list-clipboard.svg">
</head>
<body>
<h1 id="tituloPagina"></h1>
<p id="descricao"></p>
<div class="container">
<input type="text" id="campoItem" name="campoItem"/>
<div>
<button class="button button-inserir" onclick="inserirItem()">Inserir</button>
<button class="button button-reset" onclick="limparLista()">Limpar Lista</button>
<button onclick="ordenarCrescente()" class="botaoOrdenar botaoOrdemCrescente" title="Ordem Crescente">↑</button>
<button onclick="ordenarDecrescente()" class="botaoOrdenar botaoOrdemDecrescente" title="Ordem Decrescente">↓</button>
</div>
<ul id="listaTela"></ul>
</div>
<script src="app.js"></script>
</body>
</html>