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
60 lines (53 loc) · 1.83 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 1.83 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
<!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">
<link rel="stylesheet" href="style.css">
<!------for icons font-awesome-kit------>
<script src="https://kit.fontawesome.com/6067633a2b.js" crossorigin="anonymous"></script>
<title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
</head>
<body>
<!-- Add your markup here -->
<section>
<header>
<nav>
<div class="logo-container">
<img class="logo"src="header.png" alt="">
<label class="logo-txt">the best cake in the town</label>
</div>
<input type="checkbox" id="check">
<label for="check" class="hamburger-btn">
<i class="fas fa-bars"></i>
</label>
<ul class="nav-list">
<li><a class="active" href="#">home</a></li>
<li><a href="#">order</a></li>
<li><a href="#">payment</a></li>
<li><a href="#">offers</a></li>
</ul>
</nav>
</header>
</section>
<main>
<section>
<nav>
<ul class="desktop-list">
<li><a href="#">Home</a></li>
<li><a href="#">Cake</a></li>
<li><a href="#">Orderin</a></li>
<li><a href="#">Leason</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</section>
<h1>Welcome</h1>
<p>this is best cafeteria of town.</p>
</main>
<div class="footer">
<p>this is footer bar</p>
</div>
</html>