-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.35 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
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Modern Website Using HTML and CSS</title>
<link rel="icon" href="modern-images/banner.png" />
<!-- CSS Link -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<h1>Animado<span>.</span></h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Porfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="head-flex">
<div class="head">
<h1>
Cartoons And Anime Series <br />
Stream Anytime On Animado
</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugit amet
est <br />
aliquam, debitis atque odio neque doloribus ea commodi illum quam,
cupiditate ex, dolorem fuga.
</p>
<button>Browse Now</button>
</div>
<div class="image">
<img src="modern-images/banner.png" alt="img" />
</div>
</div>
</header>
</body>
</html>