-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.18 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
<!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">
<title>Web Design</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<video autoplay loop muted>
<source src="video.mp4" type="video/mp4">
</video>
<div class="text">
<h1>MAKE YOUR OWN WEBSITE</h1>
</div>
<div class="content">
<p>Making website now one of the easiest thing in the
world. <br> You just need to learn HTML, CSS, JavaScript and you
are good to go.</p> <br>
<button type="button">Register Now</button>
</div>
</div>
<div class="navbar">
<img src="logo.png" class="logo">
<ul>
<li><a href="#">Product</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Affiliate</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</body>
</html>