-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTMLPage1.html
59 lines (55 loc) · 1.48 KB
/
HTMLPage1.html
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
<!DOCTYPE html>
<html>
<head>
<!--<meta charset="utf-8" />
<title>Exam 480 Stuff</title>
<script src="Script1.js"></script>
<link rel="stylesheet" href="Styles.css" />-->
<title>A Thoughtful Experiment</title>
</head>
<body>
<table>
<tr>
<td colspan="3">
<header>
<h1>A Thoughtful Experiment</h1>
</header>
</td>
</tr>
<tr>
<td>
<nav>
<a href="">Home</a>
<a href="">Page 1</a>
<a href="">Page 2</a>
<a href="">Page 3</a>
</nav>
</td>
<td>
<section>
<article>
<hgroup>
<h1>An Article regarding thought is presented here.</h1>
<h2>Throught as a provoking element.</h2>
</hgroup>
......
<aside>Here is some more refence material</aside>
</article>
</section>
</td>
<td>
<section id="profile">
.....
</section>
</td>
</tr>
<tr>
<td>
<footer>
This page is copyright protected.
</footer>
</td>
</tr>
</table>
</body>
</html>