-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
35 lines (35 loc) · 1.37 KB
/
login.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./src/style.css">
<link href='https://fonts.googleapis.com/css?family=DM Sans' rel='stylesheet'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script src="./src/script.js"></script>
<title>Login</title>
</head>
<body>
<header>
<nav class="nav-bar">
<!--<h2>ContCarb</h2>-->
<ul><a href="./index.html">Home</a></ul>
<ul><a href="./faq.html">FAQ</a></ul>
<ul><a href="./login.html">Login</a></ul>
<div class="cart">
<i class="bi bi-cart"></i>
<div class="cartItems">0</div>
</div>
</nav>
</header>
<main class="content">
<h1>Login</h1>
<a href="./area_logada.html">Clique para fazer login</a>
</main>
<footer>
<a href="https://github.com/tomvieira/contagem-carboidratos">
<img src="./images/github.png" class="github" alt="Ícone do com o logotipo do Github.">
</a>
</footer>
</body>
</html>