-
Notifications
You must be signed in to change notification settings - Fork 0
/
nostyle.html
69 lines (68 loc) · 2.6 KB
/
nostyle.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
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div class="container wrapper">
<div>
<h1>Welcome to Junwon's Homepage</h1>
<p>Use the menu to select different Stylesheets</p>
</div>
<div class="wrapper">
<div class="menubar">
<ul id="menulist">
<li class="menuitem"><a href="style1.html">Stylesheet 1</a></li>
<li class="menuitem"><a href="style2.html">Stylesheet 2</a></li>
<li class="menuitem"><a href="nostyle.html">No Stylesheet</a></li>
</ul>
</div>
<div class="main">
<h1>Same Page Different Stylesheets</h1>
<p>
This is a demonstration of how different stylesheets can change the
layout of your HTML page. You can change the layout of this page by
selecting different stylesheets in the menu, or by selecting one of
the following links:
<br />
<a href="style1.html" onclick="reStyle(0);return false;"
>Stylesheet1</a
>
,
<a href="style2.html" onclick="reStyle(1);return false;"
>Stylesheet2</a
>
.
</p>
<h2>No Styles</h2>
<p>
This page uses DIV elements to group different sections of the HTML
page. Click here to see how the page looks like with no stylesheet:
<br />
<a href="#" onclick="noStyle();return false;">No Styles</a>.
</p>
</div>
<div class="sidebar">
<h3>Side-Bar</h3>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat.
</p>
</div>
</div>
<div id="bottom">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation
ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero
eros et accumsan et iusto odio dignissim qui blandit praesent luptatum
zzril delenit augue duis dolore te feugait nulla facilisi.
</div>
</div>
</body>
</html>