-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (119 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="form.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
<title>Online FIR System</title>
</head>
<body>
<nav>
<img id="logo" src="images/logo.png" alt="logo"/>
<div class="photograph">Online<span>FIR</span>System</div>
<div class="nav">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">Track Status</a>
</li>
<li>
<a href="#foot">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="content">
<marquee class="scrolling" behavior="scrolling" direction="left" scrollamount="20">
<h3>Don't worry your details are safe with us......</h3>
</marquee>
</div>
<div class="middle">
<div class="left">
Welcome to Online FIR Registration System
<br />
Simplified for Complainants,
<br />
No Queues, No Delays and Quick Response
</div>
<div class="right">
<img src="images/satyamev_jayate.jpg" alt="" />
</div>
</div>
<br />
<br />
<br />
<br />
<div class="card">
<a class="click" href="categories.html">
<i class="fas fa-file-alt icon"></i>
<div class="container">
<br />
<h4>
<b>File New FIR</b>
</h4>
</div>
</a>
</div>
<div class="card">
<a href="" class="click">
<i class="fas fa-file-pdf icon"></i>
<div class="container">
<br />
<h4>
<b>Download FIR</b>
</h4>
</div>
</a>
</div>
<div class="card">
<i class="fas fa-search-location icon"></i>
<div class="container">
<br />
<h4>
<b>Track Status</b>
</h4>
</div>
</div>
<footer>
<div id="foot">
<div class="button">
<a href="#" class="color">
<b> Quick Links</b>
</a>
<a href="#" class="color">
<b> Emergency Numbers </b>
</a>
<a href="#" class="color">
<b>Contact NGO</b>
</a>
</div>
<br />
<br />
<p>
Disclaimer: The facility of registering complaint on Online FIR system is purely for the convenience of the citizens. All efforts will be made to take quick and
precise action on the complaints lodged.
<br />
Warning: Giving wrong and misleading information is serious crime. Action can be taken.
</p>
<br />
<p>Contact Us :</p>
<p>Mail : onlinefirregistrationsystem@gmai.com | Instagram: @onlinefirsystem | Phone : 9983648826</p>
</div>
</footer>
</body>
</html>