-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStatus.html
89 lines (80 loc) · 2.29 KB
/
Status.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
<!DOCTYPE html>
<html>
<style>
/* CSS property for header section */
*{
margin: 0px;
}
.header {
background-color: #011530;
padding: 15px;
text-align: center;
}
img.logo{
display: inline;
width: 3%;
border-radius: 50%;
}
/* CSS property for navigation menu */
.nav_menu {
overflow: hidden;
background-color: #333;
}
.nav_menu a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.nav_menu a:hover {
background-color: white;
color: palevioletred;
}
.container{
display: grid;
color: white;
}
.notif{
background-color: #011530;
padding: 1%;
margin: 2px;
border-radius: 2%;
}
.notif>.head{
font-size: 200%;
color: palevioletred;
}
.notif>a{
float: right;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
background-color: palevioletred;
border-radius: 10%;
}
</style>
<body>
<div class="container">
<div class="notif">
<p class="head">PUC Expired</p>
<P>Vehicle Details: TVS Jupiter ZX 2021</P>
<P>Vehicle no- DL 0B 4545</P>
<P>Owner name- X AE A-12</P>
Fine- Rs 2000
<a href="payment.html" target="_top">Pay Now</a>
</div>
<div class="notif">
<p class="head">Red light crossing</p>
<P>Car Details: Lamborghini Murcielago LP640</P>
<P>Car no- DL 0B 5632</P>
<P>Owner name- X AE A-12</P>
Fine- Rs 2000
<a href="payment.html" target="_top">Pay Now</a>
</div>
</div>
</body>
</html>