-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
82 lines (80 loc) · 3.09 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
<!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/c45c4b85d4.js"
crossorigin="anonymous"
></script>
<title>Citrus Cafe</title>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./layout.css" />
<script
src="https://kit.fontawesome.com/806e7e640e.js"
crossorigin="anonymous"
></script>
</head>
<body>
<main class="container">
<header id="logo">
<img src="./images/lrg_logo.png" alt="Citrus Cafe logo" />
</header>
<nav>
<ul class="linkit">
<a href="#"><li>Home</li></a>
<a href="#"><li>Menus</li></a>
<a href="#"><li>Reservation</li></a>
<a href="#"><li>Gallery</li></a>
<a href="#"><li>Contact</li></a>
</ul>
</nav>
<main class="maincontent">
<article id="vision">
<section>
<h2>
A new neighourhood kitchen using organic and sustainable ingredients all locally sourced.
</h2>
</section>
<figure>
<img src="./images/vision-image.png" alt="Interior of restaurant" />
</figure>
</article>
<article id="boxes">
<section id="specials">
<h3>Today's Specials<i class="fa-solid fa-angle-right"></i></h3>
<img src="./images/tasty_webedit.jpg" alt="photo of a chicken meal" />
</section>
<section id="events">
<h3>Events<i class="fa-solid fa-angle-right"></i></h3>
<img src="./images/interior_webedit.jpg" alt="photo of the interior of the restaurant" />
</section>
<section id="news">
<h3>News<i class="fa-solid fa-angle-right"></i></h3>
<table>
<tr><td><span class="date">9/1</span></td> <td>Celebrity Guest Chef Night</td></tr>
<tr><td><span class="date">9/3</span></td> <td>New Menu Samplsers!</td></tr>
<tr><td><span class="date">9/4</span></td><td>Chef Citrus Style</td></tr>
<tr><td><span class="date">9/23</span></td><td>Pork Pork and More Pork</td></tr>
<tr><td><span class="date">10/1</span></td> <td>Celebrity Guest Chef Night</td></tr>
<tr><td><span class="date">10/3</span></td> <td>New Menu Samplers!</td></tr>
<tr><td><span class="date">10/4</span></td> <td>Iron Chef Citrus Style</td></tr>
</table>
</section>
</article>
</main>
<footer>
<p>
Citrus Cafe <br>
601 Townsend St, San Francisco, CA, 94117 <br>
<a href="tel:" id="phone"> tel: 451-555-5555</a>
</p>
<section class="some">
<a href="facebook.com"><i class="fa-brands fa-square-facebook fa-xl"></i></a>
<a href="twitter.com"><i class="fa-brands fa-square-twitter fa-xl"></i></a>
</section>
</footer>
</main>
</body>
</html>