forked from edumontiel/for-Electronic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modo Claro e Escuro</title>
<link rel="stylesheet" href="css/estilo.css">
</head>
<body class="light-mode">
<header>
<div id="logo">
<h1>FOR ELETRONICS</h1>
</div>
<div id="search">
<input type="text" placeholder="Buscar...">
<button>Buscar</button>
</div>
<div id="welcome">
<button class="welcome-button">Bem-vindo</button>
<button class="register-button">Cadastre-se</button>
</div>
<div id="actions">
<button class="toggle-button">Toggle Mode</button>
<button class="cart-button">Carrinho</button>
</div>
</header>
<main>
<div id="links">
<a href="#">meus pedidos</a> <a href="#">favoritos</a> <a href="#">minhas compras</a>
</div>
<h2>ofertas imperdíveis</h2>
</main>
<footer>
<p>todos os direitos reservados</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>