-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (40 loc) · 1.45 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
<! source code by Dev Ed from youtube -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Bodoni+Moda&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Tanya Specialty Sweets</title>
</head>
<nav>
<div class="logo"><h5>Tanya Specialty Sweets</h5></div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="pastries.html">Pastries</a></li>
<li><a href="cakes.html">Cakes</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<body>
<div class="bg"></div>
<div class="bio">
Tanya Specialty Sweets is a small family business centered in Vancouver, Washington.
<br>We specialize in European pastries and cakes for weddings and special events.
<br><br> Thank you for taking the time to view our current menu and prices.
<br>We look forward to serving you and your loved ones with sweets handmade with love. ♡
<br><br><br><br>
</div>
<div class="footer">
<br>
<i>Custom web page by Irina ~ Launched in 2021</i>
<br><br>
</div>
</body>
<script src="app.js"></script>
</html>