-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (36 loc) · 1.27 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>One Page</title>
</head>
<body>
<div class="banner">
<div class="navbar">
<div class="con-logo">
<img src="img/logo.png" alt="logo" class="logo">
</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Labtop</a></li>
<li><a href="#">Ibad</a></li>
<li><a href="#">Tablet</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
<div class="contant">
<h1>Dig Deeper</h1>
<p>When you feel comfortable with HTML and CSS, it is time to dig deeper.<br>
You should learn how to use Maps, Fonts and Icons in HTML.<br>
On the JavaScript side, you should learn how to access the HTML DOM.</p>
<div>
<button type="button"><span></span> MORE</button>
<button type="button"><span></span> SUBSCRIBE</button>
</div>
</div>
</div>
</body>
</html>