-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
77 lines (66 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Site Title -->
<title>GDSC JGEC</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="GDSC JGEC" />
<meta name="description" content="Welcome to Official Website of GDSC JGEC" />
<meta name="keywords" content="gdsc, jgec, google, developer, club" />
<!-- Meta OG: Site, Title, Description, Image, Link Displayed -->
<meta property="og:site_name" content="GDSCJGEC" />
<meta property="og:title" content="GDSC JGEC" />
<meta property="og:description" content="Welcome to GDSC JGEC" />
<meta property="og:image" content="https://gdscjgec.github.io/assets/opengraph.png" />
<!-- 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 GDSC JGEC -->
<section id="banner">
<div class="banner">
<h4>Welcome</h4>
<object data="./assets/img/gdsc_anim.svg" type="image/svg+xml"></object>
<h1>
<span>GDSC JGEC</span>
<div class="clipBg"></div>
</h1>
<h2>
<span>Google Developer Student Clubs, JGEC</span>
<div class="clipBg"></div>
</h2>
<a href="./pages/home.html" class="btn btn_start">Lets Go!</a>
</div>
</section>
<!--
******************************
Note:
Don't add anything extra in this file (index.html).
This is only landing for the website.
******************************
-->
</body>
</html>