-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatgrid.html
More file actions
85 lines (75 loc) · 1.3 KB
/
Copy pathcatgrid.html
File metadata and controls
85 lines (75 loc) · 1.3 KB
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>
<head>
<title>catgrid</title>
<style>
div {
width: 160px;
height: 250px;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
padding: 10px;
display: inline-block;
margin-right: 5px;
}
.img {
width: 150px;
height: 150px;
margin-bottom: 5px;
}
p {
margin-bottom: 10px;
margin-top: 0px;
font-family: arial;
}
.olive {
margin-bottom: 7px;
font-weight: bold;
}
.btn {
color: white;
background-color: rgb(46, 105, 200);
border: none;
padding: 5px;
padding-left: 8px;
padding-right: 8px;
border-radius: 4px;
}
</style>
</head>
<body>
<div>
<img class=img src="cat2.jpg">
<p class="olive">
Olive
</p>
<p class="mutual">
2 mutual friends
</p>
<button class="btn">
Add Friend
</button>
</div>
<div>
<img class=img src="cat1.jpeg">
<p class="olive">
Bubu
</p>
<p class="mutual">
10 mutual friends
</p>
<button class="btn">
Add Friend
</button>
</div>
<div>
<img class=img src="pup.jpg">
<p class="olive">
Jack
</p>
<p class="mutual">
5 mutual friends
</p>
<button class="btn">
Add Friend
</button>
</div>
</body>