forked from gdscjgec/Pictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
215 lines (204 loc) · 10.1 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pictionary</title>
<!-- Favicon image -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link rel="stylesheet" href="./css/footer.css" />
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Supermercado+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital@1&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Carattere&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Carattere&family=Lobster&family=Rubik+Beastly&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap"
rel="stylesheet"
/>
<!-- BOOTSTRAP -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=ABeeZee&display=swap"
rel="stylesheet"
/>
<!-- Navbar brand -->
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- BOOTSTRAP NAVBAR -->
<section id="Navbarrr">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-light">
<!-- navbar brand -->
<!-- <a href="index.html" class="navbar-brand" id="nb"> Pictionary </a> -->
<a href="./index.html" class="navbar-brand" >
<img src="./pages/images/site_logo.png" class="img-fluid ms-md-3" style="width: 100px; height: 100px;">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- hamburger menu -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- navbar items -->
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="./index.html" style="font-weight: 700; font-size: 22px;"> Home</a>
</li>
<li class="nav-item" id="lg">
<a target="" class="nav-link" href="./pages/gallery/landing.html" style="font-weight: 700; font-size: 22px;">
Gallery
</a>
</li>
<li class="nav-item" id="lg">
<a target="" class="nav-link" href="./contributors.html" style="font-weight: 700; font-size: 22px;">
Contributors
</a>
</li>
<li class="nav-item" id="lg">
<a target="" class="nav-link" href="./pages/about.html" style="font-weight: 700; font-size: 22px;"> About Us </a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</section>
<!-- end of navbar -->
<div id="content">
<h1 class="title1">Pictionary</h1>
<!-- <br /><br /><br /><br /><br /><br /><br /> -->
<div class="div1"> <div class="ring1"></div>
<h3 class="title2">What is the Pictionary?</h3>
<p class="paragraph1">
The Pictionary is a new way for you to learn about things in a fun and interactive way.
It does exactly what a dictionary does, just better, Much BETTER!
</p>
</div>
<!-- <br /><br /><br /><br /><br /><br /> -->
<div class="div2">
<h3 class="title3">Why do we use it?</h3>
<p class="paragraph2">
Have you ever felt bored while learning something? Does, finding about new things are no fun to you
? Well, we've got you covered. Presenting to you, the <b>Pictionary</b>,
the modern day dictionary that lets you find details and information about pictures
which makes learning about stuff loads of fun!
</p>
</div>
<!-- <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> -->
<div class="div3">
<h3 class="title4">Where does it come from?</h3>
<p class="paragraph3">
The pictionary is the brainchild of our team that came up with this incredible idea
of turning the process of learning facts a bit more interactive and a lot more fun.
A website is just a start, publishing paperbacks and digital copies are the next step
in taking this idea forward. Stand with us in our journey and help us make the Pictionary
initiative a major success.
</p>
</div>
<!-- <br /><br /><br /><br /><br /><br /> -->
<div class="div4"> <div class="ring2"></div>
<h3 class="title5">How to use it?</h3>
<p class="paragraph4">
Explore through different sections of beautiful pictures and give a tickle to your brain.
On finding anything interesting, just hover over the picture and enjoy reading about it
and find out what you should know about it. More interesting sections and stuff added
regularly, so that you never stop learning. Just sit back, relax and keep exploring!😉
</p>
</div>
<!-- <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> -->
<div class="div5"> <div class="ring3"></div>
<h3 class="title6">What do we have in the store for you?</h3>
<p class="paragraph5">
So far we have sections that cover the following topics:-
<br>•Birds <br>•Dogs <br>•Pokemons <br>•Cats <br>•Monuments <br>•Earth <br>•SuperModel Cars <br>
•Movies <br>•Anime <br>
</p>
</div>
</div>
<footer class="footer">
<hr class="colored p-3" />
<div class="container-fluid p-3 bg-clr1">
<div class="row mt-2">
<div class="col-sm-6 col-md-3 mb-2 mb-md-0 text-center">
<h3>Made with 🖤 by </h3>
<img src="pages/images/GDSC_Icon.png"
class="img-circle mb-3" alt="Responsive Image"
width="66" height="66" />
<p class="nav-links"><a href="https://github.com/gdscjgec" >Google Developer Student Clubs - JGEC</a></p>
</div>
<div class="col-sm-6 col-md-2 mb-2 mb-md-0 text-center">
<h3>Quick Links</h3>
<ul class="list-unstyled nav-links">
<li><a href="/pages/gallery/landing.html">Gallery</a></li>
<li><a href="./pages/about.html">About Us</a></li>
<li><a href="./contributors.html">Contributors</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-2 mb-2 mb-md-0 text-center">
<h3>Connect With Us </h3>
<ul class="list-unstyled nav-links mb-4 ">
<li><a href="https://github.com/gdscjgec"><i class="fa fa-github icon"></i> Go to Github</a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope icon"></i> Click Me to email</a></li>
</ul>
</div>
<div class="col-sm-8 col-md-5 mb-2 mb-md-0 text-center">
<h3>Subscribe to our Newsletter</h3>
<p class="mb-4">Get the latest information about the newly updated content right in your inbox.</p>
<form action="#" class="subscribe">
<input type="text" class="form-control" placeholder="Enter your e-mail">
<input type="submit" class="btn btn-submit" value="Submit">
</form>
</div>
</div>
</div>
<div class="container-fluid bg-clr2">
<div class="row ">
<div class="d-flex justify-content-between">
<p class="text-dark mt-2 pt-2">Copyright © 2022 , All Rights Reserved</p>
<p class="back mt-2 pt-2 "><a href="./index.html" ><i class="fa fa-repeat text-dark" aria-hidden="true"></i> Back to Top</a></p>
</div>
</div>
</div>
</footer>
</body>
</html>