-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitalian.html
40 lines (37 loc) · 1.29 KB
/
italian.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
<!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">Home</a></li>
<li><a href="mexican.html">Mexican</a></li>
<li><a href="italian.html" class="active">Italian</a></li>
<li><a href="other.html">Other</a></li>
</ul>
</nav>
<header>
<h1>Italian</h1>
</header>
<main>
<section>
<h2><span id="message2"></span></h2>
<div id="foods"></div>
<button onclick="topFunction()" id="myBtn" title="Go to top">Back To Top</button>
</section>
</main>
<footer>
©<span id="year"></span> | Houssian Cookbook | Italian 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/italian.js"></script>
</body>
</html>