-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
72 lines (70 loc) · 3.17 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
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--<link rel="stylesheet" href="./assets/css/reset.css"> -->
<title> Abe's Profile</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="skip-links"> <!-- Skip links -->
<a href="#navigation" class="skip">Skip to Navigation</a>
<a href="#contact form" class="skip">Skip to contact form</a>
<a href="#contacts" class="skip">Skip to contacts links</a>
</div>
<div class="content-wrapper">
<!-- masthead -->
<header class="masthead-content">
<div class="masthead-name">
Abraham Anderson
</div>
<div id="navigation" class="masthead-navigation">
<ul>
<li class="masthead-navigation-listItem" > <a href="index.html">About </a> </li>
<li class="masthead-navigation-listItem" > <a href="portfolio.html">Portfolio</a> </li>
<li class="masthead-navigation-listItem" > <a href="#">Contact</a> </li>
</ul>
</div>
</header>
<!-- masthead end -->
<!-- Main Contetn -->
<main style="margin-top:15px" >
<section class="main-content">
<h2 id="contact form" >Contact</h2>
<form action="">
<div>
<label class="form-label" for="name">Name:</label>
<input class="form-input" type="text" name="name" placeholder="Jhon Smith" >
</div>
<div>
<label class="form-label" for="email">Email:</label>
<input class="form-input" type="text" name="email" placeholder="example@gmail.com" >
</div>
<div>
<label class="form-label" for="message">Message:</label>
<textarea name="message" class="form-label" ></textarea>
</div>
<div>
<button class="btn ">Submit</button>
</div>
</form>
</section>
<!-- Contact(side bar) -->
<section class="contact-content" >
<h2 class="text-center" >Connect With Me</h2>
<ul>
<li><a href="http://github.com/dabea"> <img class="contact-icon" src="assets/images/github.png" alt="github icon"></a></li>
<li><a href="http://linkedin.com/in/abraham-anderson-92348476"> <img class="contact-icon" src="assets/images/linkedin.png" alt="linkedin icon"></a></li>
<li><a href="http://stackoverflow.com"> <img class="contact-icon" src="assets/images/stackoverflow.png" alt="stackoverflow icon"></a></li>
</ul>
</section>
</main>
<div class="footer-push"></div>
</div>
<footer class="footer-content footer-push">
<span class="footer-text">
© 2018 yep its a thing
</span>
</footer>
</body>
</html>