-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 2.29 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Houssian Cookbook</title>
<link href="https://fonts.googleapis.com/css?family=Kalam&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<nav>
<ul id="menu">
<li><a id="toggleMenu">≡</a></li>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="mexican.html">Mexican</a></li>
<li><a href="italian.html">Italian</a></li>
<li><a href="other.html">Other</a></li>
</ul>
</nav>
<header>
<h1>Welcome to the Houssian Cookbook</h1>
</header>
<main>
<section class="main-grid">
<p class="main-paragraph" id="message1"></p>
<p class="main-paragraph2" id="message2"></p>
<img id="img" src="x" alt="x">
<h6>Thanks!</h6>
</section>
<section>
<form id="fs-frm" name="simple-contact-form" accept-charset="utf-8" action="https://formspree.io/f/mnqoboyd" method="post">
<fieldset id="fs-frm-inputs">
<label for="full-name">Full Name</label>
<input type="text" name="name" id="full-name" placeholder="Michael Bubbly" required="">
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required="">
<label for="message">Recipe</label>
<textarea rows="5" name="message" id="message" placeholder="What's Cookin?" required=""></textarea>
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission">
</fieldset>
<input type="submit" value="Submit">
</form>
<h6>Thanks</h6>
</section>
</main>
<footer>
©<span id="year"></span> | Houssian Cookbook | Mexican Food | <a href="https://lime-coffee-gorilla.glitch.me/site-plan.html">Site Plan</a>
</footer>
<script src="scripts/main.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>