-
Notifications
You must be signed in to change notification settings - Fork 0
/
9g.html
78 lines (71 loc) · 2.1 KB
/
9g.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cat display</title>
<link rel="icon" href="thumbnail/cat.jpg">
<style>
p{
font-family: Arial, Helvetica, sans-serif;
margin-top: 0px;
margin-bottom: 0px;
}
.profile{
width: 200px;
box-shadow: 0px 0px 5px rgb(37, 34, 34 0.3);
display: inline-block;
margin-right: 15px;
}
.cats{
width: 200px;
height: 300px;
object-fit: cover;
margin-bottom: 12px;
display: inline-block;
}
.name{
width: 200px;
font-size: 18px;
font-weight: bold;
margin-left: 8px;
margin-bottom:4px;
}
.matual-friend{
color: rgb(100, 100, 100);
width: 200px;
margin-left: 8px;
margin-bottom: 12px;
}
.add-friend-button{
background-color: rgb(24, 119, 242);
color: white;
border: none;
font-size: 12px;
padding: 6px 8px 6px 8px;
border-radius: 3px;
margin-bottom: 8px;
margin-left: 8px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="profile">
<img class="cats" src="thumbnail/257a5d8a-5cbd-4862-9acd-a0aa98bed080.jpg" alt="">
<p class="name">Iron mike</p>
<p class=" matual-friend">3 matual friends</p>
<button class="add-friend-button">Add Friend</button>
</div>
<div class="profile"> <img class="cats" src="thumbnail/3f88af9b-0ce7-491e-b177-65778b5a37bc.jpg" alt="">
<p class="name">White cat</p>
<p class=" matual-friend">4 matual friends</p>
<button class="add-friend-button">Add Friend</button>
</div>
<div class="profile"> <img class="cats" src="thumbnail/fc08a5b0-6ad6-408e-8d26-dc824d2495d0.jpg" alt="">
<p class="name">Windbeaker</p>
<p class=" matual-friend">2 matual friends</p>
<button class="add-friend-button">Add Friend</button>
</div>
</body>
</html>