-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
50 lines (43 loc) · 972 Bytes
/
homepage.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
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<header class="site-header clearfix">
<nav>
<div class="logo">
<h1>QUIZED</h1>
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>Services</li>
<li>AboutUs</li>
<li>ContactUs</li>
</ul>
</div>
</nav>
<section>
<div class="leftside">
<img src="intro.png">
<!--
<video width="720" height="480" controls autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>-->
</div>
<div class="rightside">
<h1>Welcome To Our Quiz Website</h1>
<p>Get yourself Certified</p>
<a href ="index.html">
<button>Welcome</button>
</a>
</div>
</section>
</header>
</body>
</html>