-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/images/favicon.jpg" type="image/x-icon" />
<title>Donate blood! Save lifes!</title>
</head>
<body>
<header>
<h1>DONATE BLOOD!</h1>
<h2>Your donation matters.</h2>
<p>1 donation can potentially save up to 3 lives.</p>
<p>
Every two seconds someone in the U.S. needs blood. </br>Did you know that a
single car accident victim can require as many as 100 units of blood? (by
American Red Cross)
</p>
<button>Yes, I want to donate</button>
</header>
<section class="form">
<h2>Be a donor</h2>
<form action="/">
<input type="text" name="name" placeholder="Full name">
<input type="text" name="email" placeholder="Email">
<input type="text" name="blood" placeholder="Blood type">
<button>Yes, I want to donate</button>
</form>
</section>
<main>
<h2>Last donors</h2>
<section class="donors">
<div class="donor">
<DIV class="blood">AB+</DIV>
<P>Machado de Assis</P>
<DIV class="blood">B+</DIV>
<P>Jorge Amado</P>
<DIV class="blood">A+</DIV>
<P>Clarice Lispector</P>
<DIV class="blood">O+</DIV>
<P>Cecília Meireles</P>
</div>
</section>
</main>
<footer>Created at Rocketseat MaratonaDev 3rd edition | © www.rocketseat.com.br</footer>
</body>
</html>