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
49 lines (48 loc) · 1.44 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.44 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
<!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" />
<!-- Add a link to your css file here -->
</head>
<body>
<header>
<nav>
<ul class="nav_bar">
<li class="logo">
<a href="#"
><img
src="https://i.etsystatic.com/31542469/r/il/760c26/3367934441/il_794xN.3367934441_70o2.jpg"
alt="logo"
/></a>
</li>
<input type="checkbox" id="check" />
<span class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Sign in</a></li>
<label for="check" class="close_menu"
><i class="fas fa_times">close menu</i></label
>
</span>
<label for="check" class="open_menu"
><i class="fas fa_bars">open menu</i></label
>
</ul>
</nav>
</header>
<main>
<section id="section1">
<p></p>
</section>
<section id="section2"><p></p></section>
<section id="section3"><p></p></section>
</main>
<footer><p></p></footer>
<!-- Add your markup here -->
</body>
</html>