forked from sinc0115/Rubys-Cupcakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (83 loc) · 3.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ruby's Cupcakes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- NAV -->
<nav>
<ul>
<li>Ruby's</li>
<li>About</li>
<li>Cupcakes</li>
<li>Contact</li>
</ul>
</nav>
<!-- NAV ENDS -->
<!-- HEADER -->
<header>
<h1>Ruby's Cupcakes</h1>
<p>World famous and locally owned. We make the cupcakes of your dreams with the flavours of your childhood. Specializing in vegan cupcakes made with consciously sourced ingredients.</p>
<button>About Us</button>
<img src="">
</header>
<!-- HEADER ENDS -->
<!-- MAIN -->
<main>
<!-- NEW FALL FLAVOUR -->
<div>
<h2>New Fall Flavour</h2>
<h3>Maple Chocolate Dream</h3>
<p>Decadent chocolate cake, topped with a fluffy maple frosting, and drizzled in so much maple syrup goodness that it will make your pancakes jealous. Seriously.</p>
<img src="">
</div>
<!-- NEW FALL FLAVOUR ENDS -->
<!-- CROWD PLEASING TREATS -->
<div>
<h2>Crowd Pleasing Treats</h2>
<!-- CUPCAKE CARDS -->
<div>
<!-- CARD -->
<div>
<img src="">
<p>Chocolate Caramel Hi-Top</p>
</div>
<!-- CARD ENDS -->
<!-- CARD -->
<div>
<img src="">
<p>Chocolate Butterbeer</p>
</div>
<!-- CARD ENDS -->
<!-- CARD -->
<div>
<img src="">
<p>Mint Chocolate Majesty</p>
</div>
<!-- CARD ENDS -->
</div>
<!-- CUPCAKE CARDS ENDS -->
<button>More Cupcakes</button>
</div>
<!-- CROWD PLEASING TREATS ENDS -->
</main>
<!-- MAIN ENDS -->
<!-- FOOTER -->
<footer>
<!-- SOCIAL MEDIA -->
<div>
<img src="">
<img src="">
<img src="">
</div>
<!-- SOCIAL MEDIA ENDS -->
<p>© 2021, Ruby's Cupcakes</p>
</footer>
<!-- FOOTER ENDS -->
</div>
</body>
</html>