This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 599
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (108 loc) · 4.07 KB
/
index.html
File metadata and controls
123 lines (108 loc) · 4.07 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<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">
<title>Responsive Cake webpage</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="menu.css" />
</head>
<body>
<div class="body__container">
<header class="header grid__full">
<div class="header__container second__grid">
<div class="header__1">
<div>
<a href="#">
<div class="logo">
<div class="logo__img"></div>
<p class="logo__text">basic_cupcake</p>
</div>
</a>
<nav class="nav__bar">
<input class="menu__btn" type="checkbox" id="menu__btn" />
<label class="menu__icon" for="menu__btn">
<span class="nav__icon"></span>
</label>
<ul class="menu unstyled__list">
<li><a href="#">Home</a></li>
<li><a href="#">Cakes</a></li>
<li><a href="#">Order</a></li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</div>
</div>
<div class="header__2">
<p class="header__text">The best cakes in town delivered to your door</p>
</div>
</div>
</header>
<nav class="big__nav">
<ul class="menu unstyled__list">
<li><a href="#">Home</a></li>
<li><a href="#">Cakes</a></li>
<li><a href="#">Order</a></li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About</a></li>
</ul>
<div class="section__break"></div>
</nav>
<main class="main__grid grid__center">
<div class="main__text">
<h1>Welcome</h1>
<p>Umami vaporware tote bag mlkshk PBR&B truffaut polaroid cloud bread. XOXO hot chicken artisan kinfolk. Biodiesel vegan cred, bushwick hammock normcore sustainable tilde coloring book four loko health goth church-key. Plaid activated charcoal food truck, man bun fixie locavore craft beer mlkshk lo-fi four loko big mood chia hammock.</p>
</div>
<div class="main__image">
<img src="images/cupcake-hero.jpg" alt="assortment of cupcakes on display" />
</div>
</main>
<section class="portfolio__section grid__center">
<h1>Some of our cakes</h1>
<div class="portfolio__grid">
<div class="item1">
<img src="images/cupcakes-1.jpg" alt="cookies and cream cupcakes" />
</div>
<div class="item2">
<img src="images/cupcakes-2.jpg" alt="basic vanilla sprinkle cupcakes" />
</div>
<div class="item3">
<img src="images/cupcakes-3.jpg" alt="chocolate cupcakes" />
</div>
<div class="item4">
<img src="images/cupcakes-4.jpg" alt="rainbow cream cupcakes" />
</div>
</div>
</section>
<footer class="grid__full">
<div class="second__grid">
<ul class="social__icons unstyled__list">
<li >
<a href="#" class="icon__flex flex__row">
<div class="fb icon"></div>
<p>Facebook</p>
</a>
</li>
<li >
<a href="#" class="icon__flex flex__row">
<div class="ig icon"></div>
<p>Instagram</p>
</a>
</li>
<li>
<a href="#" class="icon__flex flex__row">
<div class="tw icon"></div>
<p>Twitter</p>
</a>
</li>
</ul>
<p class="center__text">
© 2023 Basic_Cupcake. All rights reserved. Basic_Cupcake is a private company in Scotland no. 13411713.
</p>
</div>
</footer>
</div>
</body>
</html>