-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
113 lines (65 loc) · 2.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href=assets/css/reset.css>
<link rel="stylesheet" type="text/css" href=assets/css/style.css>
<title>Portfolio</title>
</head>
<body>
<div class="container"> <!--container is the entire layout, including the footer -->
<div id="sub-container"> <!--sub-container is everything except the footer-->
<header class="awesome-header"> <!-- container for the name and navlinks for about, portfolio, contact -->
<div class="header-container"> <!-- container for name -->
<h1 class="name">Timothy Lee</h1>
</div>
<nav id="navcontainer"> <!--navigation to about, portfolio, contact pages-->
<ul id="navlist">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="contact-box"> <!-- includes "Contact" and input fields -->
<header class="info">
<h2>Contact</h2>
<br>
<hr>
</header>
<section id="inputbox">
<form action="action_page.php">
Name<br>
<input type="text" name="name" value=" John Smith">
<br>
<br>
Email
<br>
<input type="text" name="email" value=" [email protected]">
<br>
Message
<br>
<textarea></textarea>
<br>
<br>
<input type="submit" value="Submit" class="submit">
</form>
</section> <!-- end of input areas -->
</section>
<aside class="connect-with-me-c"> <!-- start of connect with me sidebar -->
<h3>Connect With Me</h3>
<hr class="connect-with-me-line">
<div class="connect-icons">
<a href="https://github.com/timothydlee" target="_blank"><img src=assets/images/Github.png alt="github image"></a>
<a href="https://www.linkedin.com/in/timothy-lee-84370328" target="_blank"><img src=assets/images/LinkedIn.png alt="linkedin icon"></a>
<a href="http://stackoverflow.com/users/6933728/tim-lee" target="_blank"><img src=assets/images/StackOverflow.png alt="stackflow icon">
</a>
</div>
</aside> <!-- end connect with me sidebar .connect-with-me -->
</div> <!-- end id #sub-container -->
<footer>
©Copyright Timothy Lee
</footer>
</div> <!-- end class .container -->
</body>
</html>