forked from PomoRev/CST8285_S22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab2_302.html
More file actions
85 lines (72 loc) · 2.41 KB
/
Lab2_302.html
File metadata and controls
85 lines (72 loc) · 2.41 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
<!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-05-10">
<style>
.bodytext {
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
</style>
<title>This is our newest webpage</title>
</head>
<body>
<header>This is our newest webpage</header>
<p class="bodytext" lang="fr">
This is
<img src="images/Frank2020scaled.jpg" alt="Frank in a purple shirt"
height="300">some text. This is a lot of text to make sure that I wrap\
to the next line. hey, touch typing sure comes in handy for
programming. This is still not enough text. Whoah. Here is some more.
</p>
<h3 style="text-align: center;">This is a section title</h3>
<p class="bodytext">Another line of text.</p>
<p class="exclammation">Hey!</p>
<img src="images/Frank2020scaled.jpg"
alt="Frank in a purple shirt"
height="300" hidden>
<ul>
<li>Howard</li>
<li>Tanya</li>
<li>Jin</li>
<p>Jin has a very very nice hat.</p>
<li>George</li>
<li>Phyllis</li>
</ul>
<ol>
<li class="listything">Bob</li>
<li class="listything">Another Bob</li>
</ol>
<!-- I wrote table>tr*4>td*4.tablething to generate the table below. -->
<table>
<tr>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
</tr>
<tr>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
</tr>
<tr>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
</tr>
<tr>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
<td class="tablething"></td>
</tr>
</table>
<p class="bodytext">Here is some more text.</p>
</body>
</html>