forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 2.84 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 2.84 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
<!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>
<!-- Add a link to your css file here -->
<!-- <link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/> -->
<link rel="stylesheet" href="style.css" />
<!-- <link
href="/your-path-to-fontawesome/css/fontawesome.css"
rel="stylesheet"
/> -->
</head>
<body>
<!-- Add your markup here -->
<header>
<!-- **** LOGO **** -->
<img
src="images/cake-food-logo-9A487CF7AA-seeklogo.com.png"
alt="cupcake logo"
class="logo"
/>
<h1>The best cakes in town delivered to your door!</h1>
<!-- *** HAMBURGER MENU *** -->
<div class="hamburger-container">
<img
src="images/menu2.png"
class="hamburger-icon"
alt="hamburger menu icon"
/>
</div>
</header>
<!-- **** NAVBAR **** -->
<nav class="navbar-container">
<nav class="navbar-links ">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Cakes</a></li>
<li><a href="#">Ordering</a</li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</nav>
<div class="hero">
<section class="welcome">
<h2>Welcome</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae, repudiandae harum. Maxime modi voluptatum ipsam inventore consectetur praesentium, doloribus soluta.</p>
</section>
<section class="image-container">
<img class="main-image" src="images/cupcakes.jpg" alt="2 cupcakes">
</section>
</div>
<section class="image-cards">
<img src="images/melissia-suares-7dhnDG46L2E-unsplash.jpg" alt="choc chip cupcakes">
<img src="images/pexels-vojtech-okenka-1055271.jpg" alt="yellow cupcake">
<img src="images/nickie-joseph-T6oD9CIlpGA-unsplash.jpg" alt="white rainbow cupcakes">
<img src="images/tacyra-autrey-ny_FqNYqnP4-unsplash.jpg" alt="chocolate doughnut">
</section>
<div id="wave"></div>
<footer>
<section class="social-media">
<ul>
<li><a href="#"><img src="images/iconmonstr-facebook-5.svg" alt="facebook icon"></a></li>
<li><a href="#"><img src="images/iconmonstr-instagram-11.svg" alt="instagram icon"></a></li>
<li><a href="#"><img src="images/iconmonstr-twitter-4.svg" alt="twitter icon"></a></li>
</ul>
</section>
<section class="copyright">
<p>© Katie's Cupcakes 2021</p>
</section>
</footer>
<script src="script.js"></script>
</body>
</html>
<!-- **** LINKS **** -->