-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
50 lines (50 loc) · 1.79 KB
/
contact.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
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ricky's Portfolio</title>
<link rel = "stylesheet" type="text/css" href = "./reset.css">
<link rel = "stylesheet" type = "text/css" href = "./index.css">
<link rel = "stylesheet" type = "text/css" href = "./formstyle.css">
<!--Github entry point index.html-->
</head>
<body>
<div class = "wrapper">
<header>
<div class = "header">
<div class = "title"><h1>Ricky</h1></div>
<div class = "nav clear">
<a href = "./index.html"><h3>About</h3></a>
<a href = "./portfolio.html"><h3>Portfolio</h3></a>
<a href = "./contact.html"><h3>Contact</h3></a>
</div>
</div>
</header>
<div class = "main">
<div class = "content">
<h2>Contact</h2>
<hr>
<form>
<label><h3>Name</h3></label>
<input type = "text" placeholder="John Smith">
<label><h3>Email</h3></label>
<input type = "text" placeholder="[email protected]">
<label><h3>Message</h3></label>
<textarea rows="20"></textarea>
<button type="submit"><h3>Submit</h3></button>
</form>
</div>
<div class = "contact">
<h3>Connect with Me</h3>
<hr>
<img src = "./github.png">
<img src = "./linkedin.png">
<img src = "./stackoverflow.png">
</div>
</div>
</div>
<footer>
<h3>Copyright 2018 Ricky Hsu</h3>
</footer>
</body>
</html>