-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 886 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Lista de Tarefas</title>
<link rel="stylesheet" href="main.css">
</head>
<script>alert('Olá Mundo!')</script>
<script src="app.js"></script>
<noscript>You need to enable JavaScript to view the full site.</noscript>
<body class="dark-theme">
<h1>Lista de Tarefas</h1>
<p id="msg">Tarefas Atuais:</p>
<ul>
<li class="list">Adicionar estilos visuais</li>
<li class="list">Adicionar temas claros e escuros</li>
<li>Ativar a mudança de tema</li>
</ul>
<div>
<button class="btn">Escuro</button>
</div>
<script src="app.js"></script>
</body>
</html>