-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpa_traffic.html
165 lines (140 loc) · 5.2 KB
/
pa_traffic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Public Awarness-Traffic Education</title>
<link rel="stylesheet" href="/public_awarness_css/pa_traffic.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<div class="top-bar">
<div class="nav-col">
<div class="logo">
<h2>Goa Police</h2>
</div>
<!-- logo -->
<div class="menu">
<a href="index.html">Home</a>
<a href="about-overview.html">About Us</a>
<a href="complaint.html">Complaints</a>
<a href="women-safety.html">Women Safety</a>
<a class="active" href="pa_traffic.html">Public Awareness</a>
</div>
<div class="clear"></div>
</div>
<!-- nav-col -->
<div class="log">
<a href="sign-in.html">Department Login</a>
</div>
<div class="clear"></div>
</div>
<!-- top-bar -->
</div>
</header>
<section class="header-bg-parent">
<div class="header-col1">
<h5>Welcome</h5>
<h2 class="typewrite">Your Safety Is <span class="auto-input"></span></h2>
<p>Society questions the police and their methods, and the police say, Do you want the criminals off the street or not?”
</p><br>
<a href="contact_us.html">Contact Us</a>
</div>
<div class="header-col2">
<!-- background ke liye use hua hai -->
</div>
<div class="clear"></div>
</section>
<!-- -------------------------------------paragraph section -------------------------------->
<section>
<div class="cardBox-overview">
<div class="card-overview">
<aside>
<h2 class="head-aside">QUICK LINKS</h2>
<div class="l1"><a class="active" href="pa_traffic.html">Traffic Education</a></div>
<div class="l2"><a href="pa_citizen.html">Citizen's Right</a></div>
<div class="l3"><a href="pa_covid.html">Covid-19</a></div>
</aside>
<div class="clear"></div>
<div class="container-overview">
<h2>TRAFFIC EDUCATION</h2>
<a href="/pdf/TRAFFIC.pdf"><img src="web_img/traffic.jpg"></a>
</div>
</div>
</section>
<!------------------------------------- footer section --------------------------------------->
<footer class="footer">
<div class="container-footer">
<div class="row">
<div class="footer-col">
<h4>Get in touch with us</h4>
<div class="line">
GOA POLICE HEADQUARTERS,<br>
Near Azad Maidan, Panaji-Goa,<br> india. Pin code:403001<br>
</div>
<ul>
<li><a id="email" href="#">[email protected]</a></li>
</ul>
<div class="line">
1800 1254 4875<br>
1800 5456 4522
</div>
</div>
<div class="footer-col">
<h4>Recommended</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Women Safety</a></li>
<li><a href="#">Complaints</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Sub links</h4>
<ul>
<li><a href="#">Passport Seva</a></li>
<li><a href="#">Legel AID</a></li>
<li><a href="#">New Intiative</a></li>
<li><a href="#">Citizens Charter</a></li>
<li><a href="#">Sakal Service</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="visit">Visitor Count:- 443434</div>
</footer>
<div class="footer_bottom">
<p class="copyright">
Copyright © 2022 <a href="#">All Rights Reserved</a>
</p>
<p class="developer">
Software Solutions Provided by <a href="">DEBUG ENTITY</a>
</p>
</div>
<!-- CDN link for typewriter -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-------------------------------------------- running our job section------------------------------------------------------------ -->
<script>
var typed = new Typed('.auto-input', {
// Waits 1000ms after typing "First"
strings: [' Our Job.'],
typeSpeed: 100,
backSpeed: 100,
loop: true
});
</script>
</body>
</html>