-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (75 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thief</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<style>
body {
background:grey;
font-family: sans-serif;
}
h2 {
text-align: center;
}
.main {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: start;
}
.info {
border:2px solid;
border-style: inset;
padding: 1rem;
background-color: #fefefe;
line-height: 0.5rem;
text-align: center;
}
.info div {
padding: 1rem;
text-align: start;
}
.info img {
filter: contrast(200%);
}
.similar_image img {
width:400px;
}
#red {
color:red;
}
@media only screen and (max-width:500px) {
body {
background-color: blue;
}
.main {
display: flex;
flex-direction: column;
}
}
</style>
</head>
<body>
<h2>
CRIMINAL <span id="red">WANTED</span>
</h2>
<div class="main">
<div class="similar_image">
<img src="./62533479.jpg" alt="">
</div>
<div class="info">
<img src="WhatsApp Image 2024-06-13 at 19.28.25_0cf52eaa.jpg" alt="profile_pic" width="100px" >
<div>
<b>Bipin Sunar</b>
<p>Resident of Nepal</p>
<p> Crime : Robbery of cash and items </p>
<p> Last seen at jodhpur, rajasthan</p>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>