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
79 lines (50 loc) · 2.3 KB
/
index.html
File metadata and controls
79 lines (50 loc) · 2.3 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- google font family -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zeyada&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Babylonica&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">
<h1>Onur's Cake Bakery</h1>
</div>
<nav class="navbar">
<ul>
<li> <a href="#home"> homee </a></li>
<li> <a href="#"> contact </a></li>
<li> <a href="#"> about </a></li>
</ul>
</nav>
<div class="hamburger-menu">
<a class="menu" href="menu"><i class="fa-solid fa-bars"></i></a>
</div>
<div class="header-content">
<h2>best cakes in town</h2>
</div>
</header>
<section class="hero-banner">
<div class="content-section">
<p> our cake is a sweet baked dessert made from flour, sugar, eggs, and butter, often flavored and decorated. It's served at special occasions and comes in many different varieties.</p2>
</div>
</section>
<section class="cake-images">
<div class="victorian-sponge-cake cake-item"> <h1>victorian-sponge-cake</h1> </div>
<div class="chocolate-cake cake-item"> <h1>chocolate-cake</h1> </div>
<div class="carrot-cake cake-item"> <h1>carrot-cake</h1> </div>
</section>
<footer>
<p>© 2023 Cake, Inc.</p>
</footer>
</body>
</html>