-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (41 loc) · 1.72 KB
/
index.html
File metadata and controls
56 lines (41 loc) · 1.72 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
<!doctype html>
<html>
<head>
<meta charset="UFT-8">
<title>My Postcard</title>
<link rel="stylesheet" href="./css/style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Handlee&display=swap" rel="stylesheet">
</head>
<body>
<div class="main-contain">
<header>
</header>
<section>
<form class="postcard" action="https://formspree.io/mznadwpm" method="post">
<div class="postcard-header">
<img src="http://assets.breatheco.de/apis/img/icon/4geeks.png" alt="Logo">
<br>
<h1>My Postcard</h1>
</div>
<div class="postcard-body">
<div class="body-left">
<p><b>!Mira que increíble¡ Este es un postcard que he creado usando html5 y css3
durante mi curso 4Geeks Academy. <br><br>
Esto es genial, no puedo esperar hacer más cosas.</b></p>
</div>
<div class="body-right">
<input type="text" name="fullname" placeholder="Nombre">
<input type="text" name="email" placeholder="E-mail">
<input type="text" name="message" placeholder="Comentarios">
</div>
</div>
<div class="postcard-footer">
<input type="submit" value="Enviar Mi Postcard">
</div>
</form>
</section>
<footer>
</footer>
</div>
</body>
</html>