-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (42 loc) · 1.57 KB
/
index.html
File metadata and controls
55 lines (42 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Handlee&display=swap" rel="stylesheet">
<title>Postcard</title>
</head>
<body>
<div class="postcard">
<div class="firstdiv">
<div>
<h1>My Postcard</h1>
</div>
<div>
<img src="http://assets.breatheco.de/apis/img/icon/4geeks.png" alt="4Geeks" class="logo">
</div>
</div>
<div class="secdiv">
<div>
<p>Look how awesome! This is a postcard that i created using HTML5 and CSS3 during my 4geeks Academy
Course</p> <br>
<p>This is so cool, can't wait to start doing more stuff</p>
</div>
<div>
<form>
<input type="text" id="lname" name="lname" placeholder="Some Name">
<input type="text" id="email" name="email" placeholder="Some Email">
<input type="text" id="comment" name="comment" placeholder="Some Comment">
</form>
</div>
</div>
<div class="thirdiv">
<form action="#">
<button type="submit" value="Send my Postcard"> Send My Postcard</button>
</form>
</div>
</div>
</div>
</body>
</html>