-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (125 loc) · 2.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Menu Added
</title>
<style>
body {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
nav {
background-color: #333;
color: #fff;
padding: 20px;
width: 61.8%;
margin: 0 auto;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
}
nav li {
margin-right: 20px;
position: relative;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px;
display: block;
transition: background-color 0.3s ease;
}
nav ul ul {
position: absolute;
top: 100%;
left: 0;
background-color: #555;
display: none;
z-index: 1;
min-width: 120px;
padding: 10px;
}
nav ul li:hover > ul {
background-color: #213;
font-size: x-large;
display: flex;
flex-direction: column;
}
nav ul ul li {
margin-right: 0;
margin-top: 10px;
position: relative;
}
nav ul ul li a {
padding: 5px;
color: yellow;
transition: background-color 0.3s ease;
}
nav ul ul ul {
left: 100%;
top: 0;
}
</style>
</head>
<body background="1.jpg" > <!-- link="#000" alink="#017bf5" vlink="#000" -->
<br />
<h3 align="left" margin=20px>
<font face="Lato" size="6">LOGO</font>
<font face="cinzel" size="4">
<nav>
<ul>
<li><a href="#">HOME</a> </li>
<li><a href="#">VIDEOS</a> </li>
<li><a href="#">PORTFOLIO</a>
<ul>
<li><a href="#">Client 1</a></li>
<li><a href="#">Client 2</a></li>
<li><a href="#">Client 3</a></li>
</ul>
</li>
<li><a href="#">BLOG</a> </li>
<li><a href="#">CONTACT US</a> </li>
</ul>
</nav>
</font>
</h3>
<br /><br /><br /><br />
<h1 align="center">
<font face="Lato" color="#017bf5" size="7">
BEAUTIFUL AND SIMPLE WEB PAGE
</font>
</h1>
<h3 align="center">
<font face="Lato" color="#000" size="5">
USING HTML ONLY (Only internal CSS is used.)
</font>
</h3>
<br />
<h1 align="center">
<video width="640" controls alt="Birds video">
<source src="birds-57685.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<video width="640" controls alt="Earth video">
<source src="file_example_OGG_480_1_7mg.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</h1>
<br />
<h3 align="center">
<a href="#">
<font face="Lato" color="#000">GET STARTED</font>
</a>
<a href="#">
<font face="Lato" color="#fff">SUBSCRIBE US</font>
</a>
</h3>
</body>
</html>