forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (70 loc) · 2.74 KB
/
index.html
File metadata and controls
73 lines (70 loc) · 2.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>USF Dining</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="header-content">
<img src="img/usfdininglogo.png" alt="USF Dining Logo" class="logo">
</header>
<nav>
<ul>
<li><a href="aboutus.html" class="button">About Us</a></li>
</ul>
</nav>
<section id="restaurants">
<ul>
<li>
<div class="restaurant-logo-container">
<a href="sample.html?restaurant=chickfila">
<img src="img/chickfilalogo.png" alt="Chick-fil-A" class="restaurant-logo">
<div class="info-on-hover">
<p>Chick-fil-A is a fast food restaurant chain specializing in chicken sandwiches.</p>
</div>
</a>
<p>Chick-fil-A</p>
</div>
</li>
<li>
<div class="restaurant-logo-container">
<a href="sample.html?restaurant=panera">
<img src="img/paneralogo.png" alt="Panera Bread" class="restaurant-logo">
<div class="info-on-hover">
<p>Panera Bread is a bakery-cafe chain known for its bread, soups, and sandwiches.</p>
</div>
</a>
<p>Panera Bread</p>
</div>
</li>
<li>
<div class="restaurant-logo-container">
<a href="sample.html?restaurant=pandaexpress">
<img src="img/pandaexpresslogo.png" alt="Panda Express" class="restaurant-logo">
<div class="info-on-hover">
<p>Panda Express is a fast casual restaurant chain serving American Chinese cuisine.</p>
</div>
</a>
<p>Panda Express</p>
</div>
</li>
<li>
<div class="restaurant-logo-container">
<a href="sample.html?restaurant=subway">
<img src="img/subwaylogo.png" alt="Subway" class="restaurant-logo">
<div class="info-on-hover">
<p>Subway is an American fast food restaurant franchise known for its submarine sandwiches and salads.</p>
</div>
</a>
<p>Subway</p>
</div>
</li>
</ul>
</section>
<footer>
<p>© USF Dining</p>
</footer>
</body>
</html>