-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (55 loc) · 2.24 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Feast- About Us</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a id="rightmost-nav-item" href="about.html">About</a>
</nav>
</header>
<main>
<div class="hero">
<img src="images/Hero Image.png" alt="" aria-hidden="true" height=688 width="1440">
<div class="hero-text">
<h1>About</h1>
<p>San Francisco's #1 Food Joint</p>
</div>
</div>
<div class="main-info">
<h2>It's More Than Food To Us</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis maiores dolorem minima facilis pariatur tenetur neque voluptates magni nemo esse?</p>
</div>
<div class="highlights">
<img class="right" src="images/Our Story.png" alt="A woman enjoying a bowl of pasta.">
<div class="highlights-text">
<h2>Our Story</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem ut iusto ipsam aliquid, repellat eligendi totam quia fugit eos? Odit.</p>
</div>
</div>
<div class="highlights">
<img class="left" src="images/Our Chef.png" alt="Our chef presenting a plate of medium rare steak.">
<div class="highlights-text">
<h2>Our Chef</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem ut iusto ipsam aliquid, repellat eligendi totam quia fugit eos? Odit.</p>
</div>
</div>
<div class="highlights">
<img class="right" src="images/Our Address.png" alt="A map of where the restaurant is located.">
<div class="highlights-text">
<h2>Our Address</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem ut iusto ipsam aliquid, repellat eligendi totam quia fugit eos? Odit.</p>
</div>
</div>
</main>
<footer>
© Feast Restaurant 2023. Designed by Steve
</footer>
</body>
</html>