-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (153 loc) · 4.78 KB
/
Copy pathindex.html
File metadata and controls
168 lines (153 loc) · 4.78 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Fusion Direction</title>
<script src="app.js"></script>
<style>
body, html {
margin: 0;
padding: 0;
height: 100vh;
overflow: hidden;
font-family: Arial, sans-serif;
}
.video-background {
position: relative;
height: 100%;
width: 100%;
}
#bg-video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1;
background-size: cover;
}
.content {
position: relative;
z-index: 1;
text-align: center;
color: white;
}
h1, p {
margin: 0;
padding: 20px;
}
.navbar {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
}
.navbar img {
width: 100px; /* Adjust the size as needed */
margin-bottom: 20px;
border-radius: 100px;
animation: glow 1.5s infinite alternate;
transition: transform 0.3s ease;
}
.navbar img:hover {
transform: scale(1.1);
}
.navbar a {
color: white;
padding: 15px;
text-decoration: none;
text-align: center;
width: 100%;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.navbar a:hover {
background: rgba(255, 255, 255, 0.2);
border-color: white;
transform: scale(1.1);
box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
}
@keyframes glow {
0% {
box-shadow: 0 0 5px rgb(70, 68, 68), 0 0 10px rgb(255, 255, 255), 0 0 15px rgb(255, 255, 255), 0 0 20px #0ff;
}
100% {
box-shadow: 0 0 10px rgb(70, 68, 68), 0 0 15px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px #0ff;
}
}
.h111{
display: inline-block;
position: absolute;
left: 456px;
margin: 130px auto;
padding: 20px;
width: 1111px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 80px;
color: whitesmoke;
}
.h112{
background-color: rgba(0, 0, 0, 0.5);
display: inline-block;
position: absolute;
left: 200px;
width: 400px;
margin: 31px auto;
border-radius: 0px 50px 50px 0px;
}
.h113{
display: inline-block;
position: absolute;
left: 265px;
margin: 231px auto;
padding: 20px;
width: 583px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 80px 0px 80px 0px ;
color: whitesmoke;
}
</style>
</head>
<body>
<div class="video-background">
<video autoplay muted loop id="bg-video">
<source src="4779866-hd_1920_1080_30fps.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="navbar">
<img class="log" src="FUSION.jpg" alt="Logo"><br><br>
<a href="/HomeIndex.html">Home Page</a>
<a href="/project.html">My Projects</a>
<a href="/buy.html">Buy Projects</a>
<a href="/notes.html">Notes</a>
<a href="/contactus.html">Contact Us</a>
<a href="/abus.html">About Us</a>
</div>
<div class="content">
<h1 class="h112">Future of Web Fusion!</h1>
</div>
<h1 class="h111"><strong> <em> Welcome to our website My User.</em></strong></h1>
<div class="h113">
<h2>Use the navigation bar to explore our sections:
<ul>
<li>'Home' to explore our Resources filled Page.</li>
<li>'Projects' to view our Featured works.</li>
<li>'Buy Project' to Purchase our Services.</li>
<li>'Contact Us' to send us a Message.</li>
<li>'About Us' to know us more Deeply and Extra's.</li>
</ul>
</h2>
</div>
</div>
</body>
</html>