-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
84 lines (65 loc) · 3.92 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
<!DOCTYPE html>
<html>
<head><link rel="stylesheet" href="normalize.css">
<title>Jake & Elwood</title>
<!-- viewport meta to render pages on mobile properly -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link to google fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<!-- https://cdnjs.com/libraries/font-awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css" rel="stylesheet">
<!-- link to my CSS -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header class="header main-grid">
<div class="header-content">
<a class="logo-link" href="index.html">
<img src="./img/logo.png" alt="" class="logo">
</a>
<button aria-label="Open navigation" class="open-nav">☰</button>
<nav class="nav">
<button aria-label="Close navigation" class="close-nav">×</button>
<ul class="nav-list">
<li class="nav-item"><a href="index.html" class="nav-link">home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">about us</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link current">contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="main-template main-grid">
<h1 class="page-title">Contact.</h1>
<p class="subtitle">Let us know how we can help you need and we’ll drive over to your place in our Bluesmobile the following day to discuss the deal.</p>
<img class="main-image" src="./img/contact.jpg" alt="a bunch of mailboxes">
<div class="secondary-text">
<h2 class="section-title">Getting in touch with us</h2>
<p>You can either use the form or send us an email. I'll get back in touch with you as soon as possible!</p>
</div>
<div class="main-text">
<form class="contact-form" action="#" method="POST">
<label class="fname-label" for="fname">First Name</label>
<input class="fname-input" id="fname" type="text">
<label class="lname-label" for="lname">Last Name</label>
<input class="lname-input" id="lname" type="text">
<label class="message-label" for="message">Message</label>
<textarea class="message-textarea" id="message"></textarea>
<button class="btn btn-primary btn-form">send</button>
</form>
</div>
</main>
<footer class="footer main-grid">
<div class="footer-main">
<img src="./img/logo.png" alt="" class="footer-logo">
<p class="footer-text">Two brothers from Chicago that are just trying to pay back their debt by helping others with their SEO, SEM, and Content Marketing needs.</p>
<p class="footer-fineprint">© Jake&Elwood 2019</p>
</div>
<ul class="social-list">
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-facebook-square"></i></a></li>
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-twitter"></i></a></li>
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>