-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (45 loc) · 1.7 KB
/
index.html
File metadata and controls
58 lines (45 loc) · 1.7 KB
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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Doe sangue! Doe vida!</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<img
class="logo"
src="/logo.png"
alt="Imagem de DOE"
>
<h2>A sua doação importa.</h2>
<p>Até 3 vidas com 1 doação.</p>
<p>Mais de 38.000 doações são necessárias todos os dias.</p>
<p>Apenas 1,9% da população brasileira, doa sangue.</p>
<button>Quero ajudar</button>
</header>
<section class="form hide">
<h2>Entre na lista de doadores</h2>
<form action="/" method="POST">
<input type="text" name="name" placeholder="Nome Completo">
<input type="text" name="email" placeholder="E-mail">
<input type="text" name="blood" placeholder="Tipo sanguíneo">
<button>Quero ajudar</button>
</form>
</section>
<main>
<h2>Últimos <span>doadores</span></h2>
<section class="donors">
{% for donor in donors %}
<div class="donor">
<div class="blood">{{ donor.blood }}</div>
<p>{{ donor.name }}</p>
</div>
{%endfor%}
</section>
</main>
<footer>By Nardo✌😄</footer>
<script src="/script.js"></script>
</body>
</html>