-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemo.html
More file actions
49 lines (48 loc) · 1020 Bytes
/
Copy pathDemo.html
File metadata and controls
49 lines (48 loc) · 1020 Bytes
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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
</title>
<style type="text/css">
#div_tong{
width: 100%;
height: 700px;
background: white;
}
#div_san_ho{
width: 30%;
height: 100%;
background: black;
float: left;
position: relative;
}
#div_vien{
width: 10%;
height: 100%;
background-image: url('C:/Users/KA/Documents/Web Dev/Picture/soc.jpg');
float: left;
}
#div_sua{
width: 60%;
height: 100%;
background-image: url('C:/Users/KA/Documents/Web Dev/Picture/sua1.gif');
background-repeat: no-repeat;
background-position: center;
float: left;
}
</style>
</head>
<body>
<div id="div_tong">
<div id="div_san_ho" >
<img src="C:\Users\KA\Documents\Web Dev\Picture\sanho.gif" style="width: 110%; position: absolute;">
</div>
<div id="div_vien">
</div>
<div id="div_sua">
</div>
</div>
</body>
</html>