forked from Aneeshcn07/2022_IBM_Code_Challenge_Ayudar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (102 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Home</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<style>
.heading {
background-color: rgba(0, 0, 0, 0.8);
height: 75px;
padding: 16px 0;
color: #e3f2fd;
text-align: center;
font-size: 2rem;
font-weight: bold;
}
.wrapper {
text-align: left;
color: #83c7f8;
border-radius: 10px;
padding: 10px;
font-size: 1.2rem;
box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.8), inset -5px -5px 5px rgba(73, 73, 73, 0.8);
}
.wrapper a {
color: #83c7f8;
}
.wrapper a:hover {
color: #a8d1ee;
}
</style>
</head>
<body>
<!-- Start your project here-->
<!--Main Navigation-->
<header>
<div class="heading">
WELCOME
</div>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light" style="background-color: #e3f2fd;">
<!-- Container wrapper -->
<div class="container">
<!-- Navbar brand -->
<!-- Toggle button -->
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse" data-mdb-target="#navbarButtonsExample"
aria-controls="navbarButtonsExample" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<!-- Collapsible wrapper -->
<div class="collapse navbar-collapse" id="navbarButtonsExample">
<!-- Left links -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<!-- Left links -->
<a href="login.html" class="btn btn-primary me-3">Login</a>
<!-- Collapsible wrapper -->
</div>
<!-- Container wrapper -->
</nav>
<!-- Navbar -->
<!-- Animated navbar -->
<!-- Background image -->
<div id="intro" class="bg-image" style="
background-image: url(images/2.jpg);
height: 100vh;
">
<div class="mask text-white" style="background-color: rgba(0, 0, 0, 0.8)">
<div class="container d-flex align-items-center text-center h-100">
<div>
<h2 class="mb-5">New Government Services</h2>
<div class="wrapper">
<ul>
<li><a href="https://thuna.keralapolice.gov.in/">Thuna Kerala Police</a></li>
<li><a href="https://keralapolice.gov.in/page/mobile-apps">POL-APP</a></li>
<li><a href="https://www.digilocker.gov.in/">DigiLocker</a></li>
<li><a href="https://www.revenue.kerala.gov.in/">Revenue e-services Kerala</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Background image -->
</header>
<!--Main Navigation-->
<div class="container my-5">
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>