-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
166 lines (154 loc) · 5.23 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<!-- custom CSS file -->
<link href="styles/index.css" rel="stylesheet" type="text/css" />
<title>Bifrost | Home</title>
<!-- favicon -->
<link rel="icon" href="./assets/logo/bifrost-logo.svg" />
</head>
<body>
<main>
<!-- main container -->
<div class="container p-2 box_shadow" id="main_container">
<!-- navbar container -->
<div class="container p-4" id="navbar_container">
<nav>
<!-- brand -->
<div id="brand">
<a class="navbar-brand" href="/index.html"
><img
class="img-src"
src="./assets/brand/bifrost-brand.svg"
width="120px"
height="50px"
alt="bifrost brand"
/></a>
</div>
<!-- brand ends here -->
<!-- code repo link -->
<div class="rounded-3 d-none" id="getCode_button">
<a
class="btn greenGradiantButton box_shadow"
target="_blank"
href="https://github.com/k99sharma/bifrost"
>Get Code</a
>
</div>
<!-- code repo link button -->
</nav>
</div>
<!-- navbar ends here -->
<!-- content container -->
<div class="container" id="content_container">
<div class="row">
<!-- text container -->
<div class="col-12 col-md-6" id="text_container">
<div class="container" id="headline_container">
<h1 class="greenGradiant">Geolocating Countries</h1>
<h3>
Powered by <span class="greenGradiant">Country API</span>
</h3>
<br />
<h5>
Visualize and learn more about different countries using
<span class="greenGradiant">Bifrost 3D Globe</span>
</h5>
</div>
<div class="container" id="nextPage_button">
<a
class="btn btn-lg greenGradiantButton box_shadow"
href="/dashboard.html"
>
Get Started
</a>
</div>
</div>
<!-- text container ends here -->
<!-- image container -->
<div class="col-12 col-md-6 p-5" id="image_container">
<img
class="img-fluid"
src="assets/images/index.svg"
alt="geolocating image"
/>
</div>
<!-- image container ends here -->
</div>
</div>
<!-- content container ends here -->
</div>
<!-- main container ends here -->
<!-- footer -->
<footer class="mb-5">
<!-- social links -->
<div class="my-4" id="socialLinks">
<a href="https://github.com/k99sharma" target="_blank"
><img
class="img-fluid mx-2"
width="22px"
height="22px"
src="./assets/icons/github.png"
alt="github link"
/></a>
<a href="https://twitter.com/kalashsharma99" target="_blank"
><img
class="img-fluid mx-2"
width="22px"
height="22px"
src="./assets/icons/twitter.png"
alt="twitter link"
/></a>
<a href="https://www.linkedin.com/in/kalashsharma99/" target="_blank"
><img
class="img-fluid mx-2"
width="22px"
height="22px"
src="./assets/icons/linkedin.png"
alt="linkedin link"
/></a>
</div>
<!-- social links ends here -->
<!-- designation container -->
<div id="designation">
<small
>Designed & built by
<span
><a
class="greenGradiant"
href="https://www.kalashsharma.com"
target="_blank"
>kalashsharma99</a
></span
></small
>
</div>
<!-- designation container ends here -->
<!-- copyright container -->
<div id="copyright"></div>
<!-- copyright container ends here -->
</footer>
<!-- footer ends here -->
</main>
<!-- bootstrap CDN -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script>
const copyright = document.getElementById("copyright");
copyright.innerHTML = `<small>© ${new Date().getFullYear()} Bifrost. All rights reserved</small>`;
</script>
</body>
</html>