-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpineapplepractice.html
More file actions
executable file
·73 lines (58 loc) · 1.1 KB
/
pineapplepractice.html
File metadata and controls
executable file
·73 lines (58 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<style>
div {
border: 3px solid #4CAF50;
box-sizing: border-box;
padding: 5px;
}
.clearfix::after {
}
.img {
}
.box {
background: lightgreen;
}
.leftContent {
}
.rightContent {
}
.bottom {
}
</style>
</head>
<body>
<div class="leftContent clearfix">
<div class="box">
Box
</div>
<div class="box">
Box
</div>
<div class="box">
Box
</div>
<div class="box">
Box
</div>
<div class="box">
Box
</div>
<div class="box">
Box
</div>
<div class="box">
Box
</div>
</div>
<div class="rightContent clearfix">
<h2>A Title</h2>
<img class="img" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Pineapple_and_cross_section.jpg/1024px-Pineapple_and_cross_section.jpg" alt="Pineapple" width="170" height="170">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum...
</div>
<div class="bottom">
This should be all the way at the bottom.
</div>
</body>
</html>