-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
135 lines (133 loc) · 4.33 KB
/
landing.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/b182c44c0a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/landing.css">
<title>Landing Page</title>
</head>
<body>
<header>
<div class="card">
<h1>Delicious & Juicy Burgers For You</h1>
<p>A mouthwatering blend of flavors that dance on your taste buds.</p>
<button class="wobble">
Check Menu
<i class="fa-solid fa-arrow-right"></i>
</button>
<div class="pickle d-none"></div>
</div>
<div class="circle">
<div class="burger"></div>
</div>
</header>
<main>
<section class="about">
<div class="circle">
<div class="burgerfries"></div>
</div>
<div class="card">
<h2>About Our Burgers</h2>
<h1>A few words about our delicious beef patties</h1>
<p>
Juicy and succulent beef patties, seasoned to perfection. <br />
A harmonious blend of savory, cheesy, crunchy, and juicy sensations. <br />
Melted cheese. Creamy and gooey. A rich and indulgent taste. <br />
Crisp lettuce, juicy tomatoes, and crunchy pickles. A refreshing contrast.
</p>
<button class="wobble">
Learn More
<i class="fa-solid fa-arrow-right"></i>
</button>
</div>
</section>
<section class="menu">
<div class="card">
<h2>Menu</h2>
<h1>Explore Our Juiciest Burgers</h1>
<p>
Below you can see our best selling patties!
</p>
</div>
<div class="wrapper">
<div class="burger-card">
<div class="photo"></div>
<div class="description">
<div class="flex">
<h3>Monster Burger</h3>
<span class="price">$19</span>
</div>
<p>INTENSE flavor profile. Gargantuan and untamed.</p>
</div>
</div>
<div class="burger-card">
<div class="photo"></div>
<div class="description">
<div class="flex">
<h3>Voltage Burger</h3>
<span class="price">$24</span>
</div>
<p>Fiery. Zesty. Peppery. Tingles the taste buds!</p>
</div>
</div>
<div class="burger-card">
<div class="photo"></div>
<div class="description">
<div class="flex">
<h3>Succulent Burger</h3>
<span class="price">$29</span>
</div>
<p>An explosion of savory goodness. Moist and satisying.</p>
</div>
</div>
</div>
</section>
<section class="clients">
<h1>Great burgers = happy people</h1>
<div class="client-wrapper">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</section>
<section class="info">
<div class="info-card">
<i class="fa-sharp fa-solid fa-clock"></i>
<p>Today 12pm - 9pm</p>
<span>Working Hours</span>
</div>
<div class="info-card">
<i class="fa-sharp fa-solid fa-location-dot"></i>
<p>Cleveland, Ohio</p>
<span>Find Us</span>
</div>
<div class="info-card">
<i class="fa-sharp fa-solid fa-phone"></i>
<p>555-131-1313</p>
<span>Call Us</span>
</div>
</section>
</main>
<footer>
<span class="logo">
<i class="fa-duotone fa-burger"></i>
<span>Burgers!</span>
</span>
<ul>
<li>About Us</li>
<li>Menu</li>
<li>Contact</li>
</ul>
<div class="icon-wrapper">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</footer>
</body>
</html>