forked from hbatatia/examplewebpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage1.html
42 lines (37 loc) · 855 Bytes
/
page1.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
<!DOCTYPE html>
<html>
<head>
<title>First Webpage</title>
<link rel="stylesheet" type="text/css" href="page1.css" media="all" />
</head>
<body>
<header id="uhead">
<div>
</div>
<div id="Title">
</div>
</header>
<nav class="menu">
</nav>
<div id="container">
<div id="content">
<section id="presentation">
<div id="profile">
</div>
<div id="picture">
</div>
</section>
<article id="subject" onclick="window.location.hash='uhead';">
</article>
</div>
<div id="side">
<aside class="menu">
<div id="links">
</div>
</aside>
</div>
</div>
<footer id="foot">
</footer>
</body>
</html>