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
executable file
·86 lines (78 loc) · 3.22 KB
/
index.html
File metadata and controls
executable file
·86 lines (78 loc) · 3.22 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
<!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/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="logo">
<img class="header-img" src="/assets/logo.png" alt="logo-image">
<h1 class="logo-name">Cake Art</h1>
</div>
<div class="menu-bar">
<ul class="menu">
<li><a class="nav-links" href="#welcome">Home</a></li>
<li><a class="nav-links" href="#cakes">Cakes</a></li>
<li><a class="nav-links" href="#contact-us">Contact Us</a></li>
</ul>
</div>
<div class="hamburger-menu">
<div class="container">
<div class="header"></div>
<div class="menu"></div>
<div class="content"></div>
<div class="footer"></div>
</div>
</div>
</header>
<main class="main">
<div class="welcome -text">
<h1>Welcome To Cake Art</h1>
<p>In cake art we make cakes with the best products and we give it a distinctive characteristic since the
client participates in the creation both choosing the ingredients and the decoration, resulting in a unique work.
We are not a factory, we are an art studio.</p>
</div>
<div class="welcome-img-wrapper">
<img class="welcome-img" src="/assets/welcome.jpg" alt="glazed cake">
</div>
</main>
<div class="img-wrapper-1">
<div class="img-wrapper-2">
<div class="cake">
<h2>Deserts</h2>
<img class="cake-img" src="/assets/pavlova-with-summer-berries-1024x652.jpg" alt="Pavlova con fresh fruits">
<h3></h3>
</div>
<div class="cake">
<h2>Cup Cake</h2>
<img class="cake-img" src="/assets/cupcake.jpg" alt="cup cakes">
<h3></h3>
</div>
</div>
<div class="img-wrapper-2">
<div class="cake">
<h2>Wedding Cake</h2>
<img class="cake-img" src="/assets/weding.jpg" alt="beautiful wedding cake">
<h3></h3>
</div>
<div class="cake">
<h2>Chocolate Cake</h2>
<img class="cake-img" src="/assets/chocolate cake.jpg" alt="chocolate cake">
<h3></h3>
</div>
</div>
</div>
<footer class="footer">
<a href=""><i class="fa-brands fa-facebook"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
</footer>
</div>
</body>
</html>