-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.47 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device=width, initial-scale 1.0">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jersey+20&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.1/css/all.css" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css"/>
<title> My postcard </title>
</head>
<body>
<div class="postcard">
<div class="postcard-top">
<h1>My postcard</h1>
<img src="https://storage.googleapis.com/breathecode-asset-images/5318bde604cf5c915f94897a71b49ab2523101322ea21cb046db1e67c24fa3be.png">
</div>
<div class="postcard-mid">
<div class="postcard-left">
<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 more stuff!</p>
</div>
<div class="postcard-right">
<input type="text" placeholder="Some Name">
<input type="text" placeholder="Some Email">
<input type="text" placeholder="Comments">
</div>
</div>
<div class="postcard-bottom">
<button> Send My Postcard</button>
</div>
</div>
</body>
</html>