-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
71 lines (69 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--VIEW PORT TAG--> <link rel="icon" href="/src/img/logo/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Passport Project</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One|Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Patua+One|Permanent+Marker|Solway|Stoke&display=swap"
rel="stylesheet">
<!-- <link href="../css/index.css" rel="stylesheet"> -->
<link href="../css/index.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/bf81363b8e.js" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!--HEADER-->
<header>
<div class="logoCompanyNameWrap">
<a href="index.html"><img class="logoImg" src="src/img/logo/logo-header-80x80.png" alt="Company Logo"></a>
<a href="index.html" class="coNameAnchor"><h1 class="companyName">Restaurant Passport</h1 a href="index.html"></a>
</div>
<!--NAV-->
<div class="headerLinkWrap">
<nav class="headerNav">
<a id="myPassport" class="navAnchor" class="headerNavMyPass" href="#">myPassport</a>
<a id="logIn" class="navAnchor" href="https://restaurant-passport-2.netlify.com/">Log In</a>
</nav>
</div>
</header>
<!--END HEADER-->
<!-- START OF FORM DATA -->
<div class="contactForm">
<h1 class="contactHeader">Contact Us<span class="contactSubHeader">Tell us what you think... We'd love to know</span></h1>
<form>
<div class="innerHeader">Let us know about you</div>
<div class="innerWrap">
<label>Name<input type="text" name="fName" /></label>
<label>Email<input type="email" name="field3" /></label>
<label>Phone<input type="text" name="street" /></label>
<!--
<div class="form-group purple-border">
<label for="contactMessage">Message</label>
<textarea class="form-control" id="contactMessage" rows="3"></textarea>
</div>
</div> -->
<div class="innerWrap">
<div class="button-section">
<input type="submit" name="Sign Up" />
</div>
</div>
</form>
</div>
<!--FOOTER-->
<footer>
<div class="bttmNavWrap">
<a id ="bttmNavHome" class="navAnchor" href="index.html">home</a>
<a id ="bttmNavAbout" class="navAnchor" href="about.html">about</a>
<a id ="bttmNavLogIn" class="navAnchor" href="contact-under.html">contact</a>
<a id ="bttmNavLogIn" class="navAnchor" href="https://restaurant-passport-2.netlify.com/">log-in</a>
</div>
<h6 class="copyright">© 2019 Restaurant Passport Project</h6>
</footer>
</div>
</body>
</html>