-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (39 loc) · 1.05 KB
/
index.html
File metadata and controls
54 lines (39 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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title> My Github Page </title>
<style>
.boxes{
background-color:#FAB;
width:100px;
height:100px;
display:block;
margin:10px 0px 20px 0px;
}
#relBox{
position: relative;
left: 20px;
top: 20px;
}
#absBox, #absBox2 {
position:absolute;
background-color:purple;
bottom: 10px;
right: 10px;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div id ="display">
<div class="boxes"></div>
<div class="boxes" id="relBox">
<div id="absBox2"></div>
</div>
<div class="boxes" id="absBox"></div>
<div class="boxes"></div>
<div class="boxes"></div>
</div>
</body>
</html>