-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 3.27 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
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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav id="head-nav">
<h3 id="head-title">Shawarma</h3>
<div id="links-container">
<a href="#" class="head-link">Account</a>
<a href="#" class="head-link">Shop</a>
<a href="#" class="head-link">About Us</a>
</div>
</nav>
<div id="head-description">
<div id="description-content">
<div id="text-container">
<h3>Shawarma is super delicious and awesome!</h3>
<p>Is made of spit-roasted layers of lamb, beef, or other meat that are sliced and often wrapped in or served with pita.</p>
</div>
<button class="sign-up-button">Sign up</button>
</div>
<img src="./img/shawarma.jpg" alt="Shawarma" id="description-img">
</div>
</header>
<main>
<div class="information-section">
<h1>Examples of Shawarmas</h1>
<div id="information-containers">
<div class="information-container">
<img src="./img/shawarma_chicken.jpg" alt="Shawarma Chicken">
<p>Chicken Shawarma</p>
</div>
<div class="information-container">
<img src="./img/shawarma_beef.jpg" alt="Shawarma Beef">
<p>Beef Shawarma</p>
</div>
<div class="information-container">
<img src="./img/shawarma_lamb.jpg" alt="Shawarma Lamb">
<p>Lamb Shawarma</p>
</div>
<div class="information-container">
<img src="./img/shawarma_mix.jpg" alt="Shawarma Mix">
<p>Mix Shawarma</p>
</div>
</div>
</div>
<div id="quote">
<div id="quote-container">
<h3 id="qute-text">"If there is a hole, there is a goal."</h3>
<p id="quote-author">-Master Oogway</p>
</div>
</div>
<div id="sign-up-section">
<div class="sign-up-text">
<h4>Come and eat a shawarma! It's time!</h3>
<p>Sign up so you can taste a shawarma by clicking that button over there.</p>
</div>
<button class="sign-up-button">Sign up</button>
</div>
</main>
<footer>
<h4 id="copyright-text">Copyright © Shawarma </h4>
</footer>
<!-- COPYRIGHT YEAR SCRIPT (GETS THE CURRENT YEAR) -->
<script>
const copyrightText = document.getElementById('copyright-text')
const currentDate = new Date
const currentYear = currentDate.getFullYear()
copyrightText.textContent += currentYear
</script>
</body>
</html>