This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (71 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Site Title -->
<title>APEX COMMUNITY</title>
<!-- Favicon-->
<link rel="shortcut icon" type="image/svg" href="./assets/logo.svg" />
<!-- Meta Character & Device Dimension -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!-- Meta Author, Description, Keywords -->
<meta name="author" content="APEX " />
<meta name="description" content="Welcome to Official Website of APEX Community" />
<!-- Meta OG: Site, Title, Description, Image, Link Displayed -->
<meta property="og:site_name" content="MITBAPEX" />
<meta property="og:title" content="MITB APEX" />
<meta property="og:description" content="Welcome APEX Community" />
<!-- Icons -->
<!-- Icon CDN Links, Eg: Font Awesome, Boxicons, Bootstrap Icons -->
<!-- Address Bar/Tab Color -->
<!-- Mobile -->
<meta name="theme-color" content="#F7FAFC" />
<!-- Windows -->
<meta name="msapplication-navbutton-color" content="#F7FAFC" />
<!-- External CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<!-- Main CSS -->
<link rel="stylesheet" href="./css/settings.css" />
<link rel="stylesheet" href="./css/index.css" />
<!-- External JS -->
<!-- JS Lib CDN/File Links -->
<!-- Main JS -->
<script defer src="./js/index.js"></script>
</head>
<body>
<!-- Index/Intro Banner APEX COMMUNITY -->
<section id="banner">
<div class="banner">
<!-- Video Background -->
<video autoplay muted loop id="video-bg">
<source src="./assets/img/boot_animation.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- End Video Background -->
<h4>Welcome to</h4>
<object data="./assets/img/APEX_anim.svg" type="image/svg+xml"></object>
<h1>
<span>APEX</span>
<div class="clipBg"></div>
</h1>
<h1>
<span>COMMUNITY</span>
<div class="clipBg"></div>
</h1>
<a href="./pages/home.html" class="btn btn_start">Click Here</a>
</div>
</section>
<!--
******************************
Note:
Don't add anything extra in this file (index.html).
This is only landing for the website.
******************************
-->
</body>
</html>
</html>