-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (82 loc) · 3.76 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
<title>Fresher's Guide | GDSC JSSSTU</title>
<!-- PWA -->
<meta name="theme-color" content ="#4dba88" />
<link rel="manifest" href ="manifest.json">
<script>
if ('serviceWorker' in navigator){
navigator.serviceWorker.register("sw.js"); }
;
</script>
</head>
<body>
<div class="container-fluid">
<div class="row bg-white px-3">
<div class="col-lg-9 col-md-7 pt-3 py-md-3">
<h3 class="text-center text-md-start">Fresher's Guide</h3>
</div>
<div class="col-lg-3 col-md-5 logo pb-2 py-md-2 d-flex justify-content-center justify-content-lg-start">
<a href="https://dscjssstu.in" target="_blank">
<img src="./images/logo.PNG" alt="logo"/>
</a>
</div>
</div>
</div>
<div class="container-fluid main-div">
<div class="row align-items-start">
<div class="col">
<h1 class="text-center text-white p-5 fw-bold">Welcome Buddy!</h1>
</div>
</div>
<div class="row welcome-row d-flex justify-content-center">
<div class="col-xl-3 d-flex justify-content-center my-3">
<a href="./study.html">
<div class="card" style="width: 18rem;">
<div class="card-body">
<img src="./images/Study.JPG" class="card-img-top" alt="Study">
<p class="card-text my-3">Are you in the mood to study?</p>
</div>
</div>
</a>
</div>
<div class="col-xl-3 d-flex justify-content-center my-3">
<a href="./fun.html">
<div class="card" style="width: 18rem;">
<div class="card-body">
<img src="./images/fun.JPG" class="card-img-top" alt="Fun">
<p class="card-text my-3">Are you in the mood to have fun?</p>
</div>
</div>
</a>
</div>
<div class="col-xl-3 d-flex justify-content-center my-3">
<a href="./admin.html">
<div class="card" style="width: 18rem;">
<div class="card-body">
<img src="./images/adminn.JPG" class="card-img-top" alt="Admin">
<p class="card-text my-3">Do you know about all the essential amenities?</p>
</div>
</div>
</a>
</div>
</div>
<hr/>
<div class="pt-2 px-1 px-md-5 pb-5">
<h5 class="text-center text-white fw-bold px-5">Do you want to be a part of a community that makes fun projects like these?</h5>
<a href="https://gdsc.community.dev/jss-science-technology-university-mysuru/" target="_blank" style="text-align:center;display:block;">
<span class="btn btn-secondary">Join now!</span></a>
</div>
</div>
<!--Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>