-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.59 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
<!DOCTYPE html>
<head>
<kjasn></kjasn>
<title>My First Postcard</title>
<link rel="stylesheet" type="text/css" href="styles.css"</link>
<link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
</head>
<body>
<div class="main-content">
<header>
</header>
<section>
<form class="postcard" action="https://formspree.io/[email protected]" method="post">
<div class="postcard-header">
<img src="https://www.4geeksacademy.co/wp-content/themes/the-fastest/assets/img/logo-black.png">
<h1>My Postcard</h1>
</div>
<div class="postcard-body">
<div class="left-part">
<p>Look how awesome! This is a postcard that I created using HTML5 and CSS3 during my 4Geeks Academy Course!</p>
<p><br/></p>
<p>This is so cool, can't wait to start doing more stuff!</p>
</div>
<div class="right-part">
<input type="text" name="fullname" placeholder="Some Name">
<input type="text" name="email" placeholder="Some Email">
<input type="text" name="message" placeholder="Some comment">
</div>
</div>
<div class="postcard-footer">
<input type="submit" value="Send My Postcard">
</div>
</form>
</section>
<footer>
</footer>
</div>
</body>
</html>