forked from breatheco-de/exercise-postcard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.35 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.35 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles.css" />
<title>Postcard</title>
</head>
<body>
<div class="tam-postcard">
<!--Postcard Como Tal-->
<div class="top-postcard">
<!--Parte de arriba de la postcard-->
<div class="tam-box-title">
<h1 class="title">My Postcard</h1>
</div>
<div class="tam-box-img">
<img
src="https://raw.githubusercontent.com/breatheco-de/exercise-postcard/refs/heads/main/.learn/assets/4geeks.png"
alt="logo 4Geeks"
class="pos-tam-img"
/>
</div>
<div class="input-par-box">
<p class="parrafo-ini">
Look how awesome! This is a postcard that i created using HTML5 and CSS3 during my 4Geeks Academy Course!
</p>
<div>
<input class="down-img" type="text" placeholder="Some name" />
</div>
<div>
<input class="down-img" type="email" placeholder="Some Email" />
</div>
<div>
<input class="down-img" type="text" placeholder="Some comment" />
</div>
<p class="position">This is so cool, can't wait to start doing more stuff!</p>
<div class="centrar-boton">
<input class="enviar" type="submit" value="Send My Postcard" />
</div>
</div>
</div>
</div>
</body>
</html>