forked from PomoRev/CST8285_S22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththirdlabweb.html
More file actions
89 lines (69 loc) · 1.87 KB
/
thirdlabweb.html
File metadata and controls
89 lines (69 loc) · 1.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-06-08">
<style>
/* this is some CSS for the lab */
.rightjust {
text-align: right;
font-style: italic;
}
#catpic {
height: 150px;
/* position: relative;
left: 20px;
top: 20px; */
float: left;
margin: 5pt 10pt;
}
.floatingpoint {
border: rgb(21, 21, 21) solid 4pt;
border-radius: 15px;
padding: 10pt;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.flexible {
display: flex;
flex-direction: row;
justify-content: space-around;
}
header {
text-align: center;
font-size: 5vw;
}
</style>
<title>Document Flow for the Masses</title>
</head>
<body>
<header>Document Flow for the Masses</header>
<div class="floatingpoint clearfix">
<p>
This is a very nice paragraph. You can read all the words
and think all the thoughts those words evoke. cool eh?
I bet you didn't think this would go so philosophical did you?
<img id="catpic" src="images/cat_with_tie.jpg" alt="Mr. Flash Malone">
This is some more text for that troublesome paragraph.
</p>
<p class="rightjust">
- your Brain
</p>
</div>
<p>
Oh no another blob of text. Whatever am I going to do?
</p>
<div class="flexible">
<button>One</button>
<button>Two</button>
<button>Three</button>
<button>Four</button>
</div>
</body>
</html>