-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (110 loc) · 3.44 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
<!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>Rohan Kumar</title>
<style>
body, html {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
height: 100%;
}
/* Video background styling */
#background-video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -1; /* Ensures video is behind the content */
object-fit: cover;
}
header {
background-color: rgba(205, 52, 235, 0); /* Semi-transparent background */
color: rgb(255, 238, 0);
padding: 10px 20px;
text-align: center;
z-index: 1;
}
nav {
background-color: rgba(0, 200, 255, 0.8); /* Semi-transparent background */
display: flex;
justify-content: space-around;
padding: 10px 0;
z-index: 1;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #575757;
}
.main {
padding: 20px;
z-index: 1;
}
.content {
margin: 20px 0;
padding: 20px;
text-align: center;
text-decoration: solid;
font-size: large;
font-weight: bold;
font-style: oblique;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(249, 247, 247);
background-color: rgba(253, 254, 254, 0); /* Semi-transparent */
border-radius: 8px;
z-index: 1;
}
footer {
background-color: #070108aa;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
z-index: 1;
}
</style>
</head>
<body>
<!-- Background Video -->
<video id="background-video" autoplay muted loop>
<source src="C:\Users\HP\OneDrive\Desktop\website\172788-847869832.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<header>
<h1></h1>
</header>
<nav>
<a href="C:\Users\HP\OneDrive\Desktop\website\index.html">Home</a>
<a href="C:\Users\HP\OneDrive\Desktop\website\about.html">About</a>
<a href="C:\Users\HP\OneDrive\Desktop\website\contact.html">Contact</a>
</nav>
<div class="main">
<div class="content"><h1>Welcome!!</h1>
<a href="C:\Users\HP\OneDrive\Desktop\website\about.html" class="button">Know About Rohan</a>
</div>
</div>
</div>
<footer>
<p>© 2024 Rohan Kumar. All rights reserved.</p>
<div class="social-icons">
<a href="#">Facebook</a>
<a href="#">LinkedIn</a>
<a href="#">Twitter</a>
<p>.................................</p>
<p>Phone Number: 123456789</p>
<p>Email: rohankumar.2024@uem.edu.in</p>
</div>
</footer>
</body>
</html>