-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Digital Postcard</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
</head>
<body>
<div id="postcardContainer">
<div id="topContainer" class="flexboxContainers">
<div id="topLeftTextContainer">
<h2>My Postcard</h2>
</div>
<div id="topRightTextContainer">
<img src="./img/4Geeks.jpg" height="70" width="70"/>
</div>
</div>
<div id="middleContainer" class="flexboxContainers">
<div id="leftTextContainer">
<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 id="rightTextContainer">
<input type="text" name="name" placeholder="Name"/>
<input type="text" name="email" placeholder="Email"/>
<input type="text" name="comment" placeholder="Comment"/>
</div>
</div>
<div id="bottomContainer">
<input type="submit" id="submitButton" value="Send My Postcard"/>
</div>
</div>
</body>
</html>