-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.html
More file actions
32 lines (29 loc) · 1.03 KB
/
div.html
File metadata and controls
32 lines (29 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Div property</title>
<link rel="stylesheet" href="div.css"
</head>
<body>
<div class="square"></div>
<div class="circle"></div>
<div class="profile">
<img src="https://t4.ftcdn.net/jpg/00/97/58/97/360_F_97589769_t45CqXyzjz0KXwoBZT9PRaWGHRk5hQqQ.jpg" class="img1">
<p class="txt1">Oliver</p>
<p class="txt2">2 mutual friends</p>
<button class="button1">Add friend</button>
</div>
<div class="profile">
<img src="https://t4.ftcdn.net/jpg/00/97/58/97/360_F_97589769_t45CqXyzjz0KXwoBZT9PRaWGHRk5hQqQ.jpg" class="img1">
<p class="txt1">Oliver</p>
<p class="txt2">2 mutual friends</p>
<button class="button1">Add friend</button>
</div>
<div class="profile">
<img src="https://images.pexels.com/photos/2071882/pexels-photo-2071882.jpeg?cs=srgb&dl=pexels-wojciech-kumpicki-1084687-2071882.jpg&fm=jpg" class="img1">
<p class="txt1">Oliver</p>
<p class="txt2">2 mutual friends</p>
<button class="button1">Add friend</button>
</div>
</body>
</html>