-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
82 lines (63 loc) · 2.51 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Contact | Sarah Shelden </title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<header id="masthead">
<div class="container">
<div class = "row">
<nav class="navbar navbar-default navbar-fixed-top">
<div class=".container-fluid">
<a href="index.html" <h1> Sarah Shelden </h1>
<div class="float-md-right">
<a href="index.html"> About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</div>
<br>
</nav>
</div>
</div>
<!--Copied code from recommended hw solution and it does not fill the contact form -->
<div id="main-container" class="container">
<section class="main-section">
<h1>Contact</h1>
<form id="contact-form">
<ul>
<li>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="John Smith" required="required">
</li>
<li>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="example@gmail.com" required="required">
</li>
<li>
<label for="message">Message</label>
<textarea id="message" name="message" required="required"></textarea>
</li>
</ul>
<input type="submit">
</form>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="#"><img src="assets/images/github-128.png" class="social" alt="GitHub" /></a>
<a href="#"><img src="assets/images/linkedin-128.png" class="social" alt="LinkedIn" /></a>
<a href="#"><img src="assets/images/stackoverflow-128.png" class="social" alt="Stack Overflow" /></a>
</div>
</section>
</div>
<footer>
<div class="container">
Copyright ©
</div>
</footer>
</body>
</html>