-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (128 loc) · 4.79 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
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
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/content.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=SUSE:[email protected]&display=swap" rel="stylesheet">
<title>Home</title>
</head>
<body>
<!--Header-->
<header>
<div class="logo-text">Imamu Finds</div>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="AboutUs.html">About Us</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
<div class="icons">
<div class="bx bx-menu" id="menu-icon"></div>
</div>
</header>
<!--head-->
<section id="section1" class="head">
<div class="head-text">
<h1>Where to eat ?</h1>
<p>Choose your building</p>
</div>
</section>
<!--Head menu-->
<section class="head-menu-container">
<ul class="head-menu">
<li><a href="Building-1.html">321</a></li>
<li><a href="Building-2.html">322</a></li>
<li><a href="Building-3.html">323</a></li>
<li><a href="Building-4.html">324</a></li>
<li><a href="Building-5.html">325</a></li>
<li><a href="Building-6.html">326</a></li>
<li><a href="Services.html">service</a></li>
</ul>
</section>
<!--main content-->
<section class="content-section">
<div class="content-container">
<img src="Img/background-1.jpg" />
<div class="content-box">
<div class="title">Voom</div>
<div class="content">
Voom specializes in high-quality coffee drinks, offering espressos,
lattes, and cold brews. The menu also includes a selection of
pastries and desserts. Voom Café features internal seating.
</div>
<a class="content-btn">Next to Building 323</a>
</div>
</div>
<hr />
<div class="content-container">
<div class="content-box">
<div class="title">Arai</div>
<div class="content">
Arai focuses on matcha drinks as well as specialty coffee and cold
beverages. The menu is complemented by various desserts, offering a
sweet treat to pair with their drinks.
</div>
<a class="content-btn">Next to Building 323</a>
</div>
<img src="Img/background-2.jpg" />
</div>
<hr />
<div class="content-container">
<img src="Img/background-3.jpg" />
<div class="content-box">
<div class="title">Kabi</div>
<div class="content">
Kabi offers a wide range of drinks, including specialty coffees,
teas and refreshing cold drinks. In addition to its drink offerings,
Capi's offers a variety of pastries, desserts and sandwiches.
</div>
<a class="content-btn">Next to Building 321 and 322</a>
</div>
</div>
<hr />
<div class="content-container">
<div class="content-box">
<div class="title">Artista</div>
<div class="content">
Artista offers a variety of both cold and hot coffee, complemented
by a selection of pies and baked goods. The café features both
indoor and outdoor seating.
</div>
<a class="content-btn">Next to Building 324 and 326</a>
</div>
<img src="Img/content-4.jpg" />
</div>
</section>
<!--footer-->
<section class="footer-container">
<div class="contact-box">
<h4>Imamu Finds</h4>
<h5>Connect with us</h5>
<div class="accounts">
<a href="https://x.com/mgisyy" target="_blank">
<i class="bx bxl-twitter"></i>
</a>
<a href="https://github.com/GhaidaAL36" target="_blank">
<i class="bx bxl-github"></i>
</a>
<a
href="https://www.linkedin.com/in/ghaida-almutairi-2b47432b6/"
target="_blank"
>
<i class="bx bxl-linkedin"></i>
</a>
</div>
<div class="footer-right">
<h4>Copyright ©2024 All rights reserved | made by Ghaida</h4>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>