-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
36 lines (36 loc) · 1.09 KB
/
home.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
<!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="home.css" />
<title>Levi's Bakery</title>
</head>
<body>
<div class="container">
<div class="navbar">
<p class="company-name">Levi's Bakery</p>
<div class="tabs">
<a href="about.html"> About</a>
<a href="menu.html"> Menu</a>
<a href="review.html"> Review</a>
<a href="contact.html"> Contact</a>
</div>
</div>
<div id="home-image">
<img src="home-bakery.jpg" alt="home image" />
</div>
<div class="social-media">
<a href="https://www.instagram.com" target="_blank">
<img src="instagram.png" alt="instagram"
/></a>
<a href="https://www.facebook.com" target="_blank">
<img src="facebook.png" alt="facebook"
/></a>
<a href="https://www.tiktok.com" target="_blank">
<img src="tiktok.png" alt="tiktok"
/></a>
</div>
</div>
</body>
</html>