Skip to content

Commit d7420c6

Browse files
Update index.html
1 parent f02a98c commit d7420c6

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

index.html

+55
Original file line numberDiff line numberDiff line change
@@ -1 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Fekra! Remota Virtual Assistance</title>
7+
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
8+
<style>
9+
body {
10+
display: flex;
11+
justify-content: center;
12+
align-items: center;
13+
height: 100vh;
14+
margin: 0;
15+
font-family: 'Cairo', sans-serif;
16+
flex-direction: column;
17+
position: relative;
18+
overflow: hidden;
19+
}
120

21+
.video-background {
22+
position: absolute;
23+
top: 0;
24+
left: 0;
25+
width: 100%;
26+
height: 100%;
27+
z-index: -1;
28+
overflow: hidden;
29+
}
30+
31+
.video-background video {
32+
width: 100%;
33+
height: 100%;
34+
object-fit: cover;
35+
}
36+
37+
.content {
38+
position: relative;
39+
z-index: 1;
40+
}
41+
42+
</style>
43+
</head>
44+
<body>
45+
<div class="video-background">
46+
<video autoplay muted loop>
47+
<source src="Media/Untitled design.mp4" type="video/mp4">
48+
Your browser does not support the video tag.
49+
</video>
50+
</div>
51+
<div class="content">
52+
<!-- Your existing content here -->
53+
</div>
54+
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)