-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9f.html
85 lines (75 loc) · 1.88 KB
/
9f.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.friend-request-box{
border:none;
margin-left:10px;
margin-top:10px;
display:inline-block;
height:139px;
width:90px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.lightskin{
width:90px;
height:88px;
margin-bottom:0px;
}
.name,.mutual,.add-friend{
font-family:arial;
margin-left:4px;
}
.name{
margin-top:1px;
font-weight:bold;
font-size:9px;
margin-bottom:0px;
}
.mutual{
color:rgb(164, 164, 164);
margin-top:1px;
font-size:7px;
font-weight:bold;
margin-left:5px;
margin-bottom:0px;
}
.add-friend{
margin-top:6px;
border:none;
color:white;
padding-top:4px;
padding-bottom:4px;
background-color:rgb(8, 102, 255);
border-radius:2px;
font-size:7px;
padding-left:11px;
padding-right:11px;
color:rgb(255, 255, 255);
}
</style>
</head>
<body>
<div class="friend-request-box">
<img class="lightskin" src="thumbnail/lightskin.jpeg" alt="">
<p class="name">Lund Mohit</p>
<p class="mutual">2 mutual friends</p>
<button class="add-friend">Add Friend</button>
</div>
<div class="friend-request-box">
<img class="lightskin" src="thumbnail/freaky.jpeg" alt="">
<p class="name">आदित्य मादरचोद</p>
<p class="mutual">3 mutual friends</p>
<button class="add-friend">Add Friend</button>
</div>
<div class="friend-request-box">
<img class="lightskin" src="thumbnail/ranbir.jpeg" alt="">
<p class="name">Dharampal</p>
<p class="mutual">4 mutual friends</p>
<button class="add-friend">Add Friend</button>
</div>
</body>
</html>