-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
70 lines (68 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<title>Responsive - Index</title>
<!-- Linking CSS Reset -->
<link rel="stylesheet" type="text/css" href="assets\css\reset.css">
<!-- Linking Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<!-- Linking CSS -->
<link rel="stylesheet" type="text/css" href="assets\css\style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!--HEADER-->
<header>
<div class="masthead-nav">
<div>
<a href="index.html" id="logo">Richard Kearse</a>
<nav class="nav-desktop">
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</div>
<div class="masthead-mobile">
<div class="mobile-nav-header col-sm-12">Richard Kearse</div>
<nav class=" mobile-nav-links">
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<br>
<!--MEAT N' POTATOES-->
<main>
<div class="main-body">
<h1>Contact</h1>
<hr size="10">
<div>
<form>
<div class="form-group">
<label for="InputName">Email address</label>
<input type="name" class="form-control" id="InputName" aria-describedby="emailHelp" placeholder="John Smith">
</div>
<div class="form-group">
<label for="InputEmail">Email address</label>
<input type="email" class="form-control" id="InputEmail" aria-describedby="emailHelp" placeholder="[email protected]">
<!--<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>-->
</div>
<div class="form-group">
<label for="Messagearea">Message</label>
<textarea class="form-control" id="Messagearea" rows="8"></textarea>
</div>
<button class="btn sub-btn" type="submit" class="btn">Submit</button>
</form>
</div>
</div>
</main>
<!--FOOTER-->
<footer class="footer">
<div>
Copyright ©
</div>
</footer>
</body>
</html>