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
62 lines (57 loc) · 3.08 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 3.08 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/text-on-hover.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media-query.css">
</head>
<body>
<header>
<div class="logo_and_hamburger-icon">
<div>
<img class="logo animate__animated animate__rollIn" src="images/cupcake-logo-2.png" alt="cupcake logo"/>
<p class="logo-text animate__animated animate__slideInLeft">Mighty Cupcakes</p>
</div>
<img class="hamburger-icon" src="images/menu-hamburger.svg" alt="hamburger icon" />
</div>
<p class="animate__animated animate__zoomInDown">The best cupcakes in town delivered to your door</p>
</header>
<nav class="animate__animated animate__slideInRight">
<ul class="menu">
<li><a class="active" 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>
<main class="wrapper">
<div class="text">
<h1 class="animate__animated animate__zoomIn">Welcome</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nulla numquam ullam modi? Dolor ex dicta, nulla exercitationem, neque cupiditate facere deserunt, cumque perspiciatis maxime impedit inventore. Veritatis, quo eum! Alias?</p>
</div>
<div class="cupcake-image top tooltip"><span class="tooltiptext">Eat Me</span><img src="images/cupcakes-table.jpg" alt="cupcake" /></div>
<div class="cupcake-image one tooltip"><span class="tooltiptext">Eat Me</span><img src="images/cupcakes-7.jpg" alt="cupcake" /></div>
<div class="cupcake-image two tooltip"><span class="tooltiptext">Eat Me</span><img src="images/caramel-cupcake.jpg" alt="cupcake" /></div>
<div class="cupcake-image three tooltip"><span class="tooltiptext">Eat Me</span><img src="images/cupcakes-4.jpg" alt="cupcake" /></div>
<div class="cupcake-image four tooltip"><span class="tooltiptext">Eat Me</span><img src="images/cupcakes-6.jpg" alt="cupcake"/></div>
</main>
<footer>
<ul>
<li><a href="#">Lorem ipsum dolor sit</a></li>
<li><a href="#">Lorem ipsum dolor sit </a></li>
<li><a href="#">Lorem ipsum dolor sit</a></li>
</ul>
<p>© Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</footer>
</body>
</html>