-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (31 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Handlee&display=swap" rel="stylesheet">
</head>
<body>
<form class=cardcontainer action="https://formspree.io/[email protected]" method="POST">
<div class="headercard">
<img src="http://assets.breatheco.de/apis/img/icon/4geeks.png">
<h1> My Postcard</h1>
</div>
<div class="bodycard">
<div class="textcard">
<p> Look how awesome! This is a postcard that I
created using HTML5 and CSS3 during my 4Geeks Academy Course!</p>
<p>This is so cool, can't wait to start doing more stuff! </p>
</div>
<div class="addresscard">
<p><input type="text" name="fullname" placeholder="Some Name"></p>
<p> <input type="text" name="email" placeholder="Some Email"></p>
<p> <input type="text" name="message" placeholder="Some Comment"></p>
</div>
</div>
<div class="posbutton">
<p><input type="submit" value="Send My Postcard"></p>
</div>
</form>
</body>
</html>