-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathinfo.html
More file actions
49 lines (47 loc) · 1.05 KB
/
Copy pathinfo.html
File metadata and controls
49 lines (47 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>info</title>
<meta charset="UTF-8"/>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: palegreen;
float :left;
width: 8000px;
height: auto;
}
ul {
margin: 0px;
padding: 0px;
}
li {
list-style: none;
clear: left;
float: left;
margin-bottom: 10px;
}
img {
float: left;
width: 200px;
height: 200px;
margin-right: 50px;
}
</style>
</head>
<body>
<h1> Members</h1>
<ul>
<li>
<img src="image1.jpg"/>
<h3>Member 1</h3>
<p>Trường Đại Học Khoa Học Tự Nhiên - Khoa Công Nghệ Thông Tin</p>
</li>
<li>
<img src="image2.jpg"/>
<h3> Member 2</h3>
<p>Trường Đại Học Khoa Học Tự Nhiên - Khoa Công Nghệ Thông Tin</p>
</li>
</ul>
</body>
</html>