This repository was archived by the owner on Feb 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (88 loc) · 3.09 KB
/
index.html
File metadata and controls
88 lines (88 loc) · 3.09 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
<!DOCTYPE html>
<html>
<head>
<title>Team Forte</title>
<link rel="icon" type="image/x-icon" href="/public/images/favicon2.png">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<style>
#video-background::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
z-index: 1; /* Sit on top of the video */
}
body, html {
height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: flex-start; /* Align content to the left */
flex-direction: column;
overflow: hidden; /* Prevent scrolling */
z-index: 2; /* Put content in the foreground */
color:white;
font-family: Montserrat;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
z-index: 2; /* Put content in the foreground */
}
#video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Put video in the background */
}
#video-background video {
width: 250%;
height: auto; /* Maintain aspect ratio */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* Center video */
}
t {
font-size: 60px;
font-weight: bold;
text-align: center;
margin-top: 0px;
margin-bottom: 20px;
}
p {
font-size: 20px;
text-align: center;
margin-top: 0px;
margin-bottom: 20px;
line-height: 30px;
width: 62vw;
font-family: Poppins;
}
@media (max-width: 600px) {
#video-background {
display: none; /* Hide video on small screens */
}
body {
background: black; /* Make background black on small screens */
}
}
</style>
</head>
<body>
<div id="video-background">
<video preload="auto" autoplay="true" loop="loop" muted="muted">
<source src="public/videos/final.mp4" type="video/mp4">
</video>
</div>
<t>VEX V5 Team 1072A</t>
<p>Welcome to <strong>Team Forte</strong>, the robotics powerhouse from The Harker School. Composed of exceptional individuals, including Ayaan Grover, Arush Savla, Aarav Kumar, Avyay Ganesh, Advaith Rajesh, Tavish Yergera, and Arjun Murthy, we embark on a journey of innovation and collaboration, pushing the boundaries of robotics excellence. Join us as we explore the exciting world of robotics, where creativity meets precision, and challenges lead to triumphs.</p>
</body>
</html>