forked from breatheco-de/exercise-postcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik+Vinyl&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="postcard">
<div class="postcard-header">
<div class="postcard-lado-izquierdo">
<h1>My Postcard</h1>
</div>
<div class="postcard-logo">
<img src="https://github.com/breatheco-de/exercise-postcard/blob/main/.learn/assets/4geeks.png?raw=true" alt="logo" class="postcard-logo">
</div>
</div>
<div class="postcard-content">
<div class="postcard-p">
<p>Look how awesome! This is a postcard that i created using HTML5 and CSS3 during my 4 Geeks Academy Course!</p>
<p>This is so cool, cant wait to start doing more stuff!</p>
</div>
<div class="postcard-form">
<label for="name">Some Name</label><br>
<input type="text" id="name"><br>
<label for="email">Some email</label><br>
<input type="text" id="email"><br>
<label for="comment">Some comment</label><br>
<input type="text" id="comment"><br>
</div>
</div>
<div class="postcard-button">
<button>
<span>Send My Postcard</span>
</button>
</div>
</div>
</body>
</html>