-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloagain.html
More file actions
45 lines (41 loc) · 2.2 KB
/
helloagain.html
File metadata and controls
45 lines (41 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<title>HTML file... Styled!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>
This is styled text wowow.
</h1>
Hello again this website uses a stylesheet.
<div id="first">
This is a divided text portion called <span class="name">first</span>. Hello Hello.
</div>
<table>
<tr>
<th>Number</th>
<th>Letter</th>
<th>Colour</th>
</tr>
<tr>
<td>One</td>
<td>A</td>
<td>Red</td>
</tr>
<tr>
<td>Two</td>
<td>B</td>
<td>Green</td>
</tr>
<tr>
<td>Three</td>
<td>C</td>
<td>Blue</td>
</tr>
</table>
<div id="second">
This is the <span class="name">second</span> divided portion!
</div>
</body>
</html>