-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (33 loc) · 834 Bytes
/
index.html
File metadata and controls
41 lines (33 loc) · 834 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>XCSS Tests</title>
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="XCSS.js"></script>
<noscript>
<link media="all" type="text/css" rel="stylesheet" href="style.css" />
<link media="all" type="text/css" rel="stylesheet" href="style2.css" />
</noscript>
</head>
<body>
<p>Here's some text, yo!</p>
<p>Here's some text, yo!</p>
<p>Here's some text, yo!</p>
<p>Here's some text, yo!</p>
<div id="somediv">
IIIIII AIN'T GOT NO RULES. TO HOLD ME DOWN.
</div>
<ul id="list">
<li>an item</li>
<li>an item</li>
<li>an item</li>
<li>an item</li>
<li>an item</li>
<li>an item</li>
<li>an item</li>
</ul>
<script>
XCSS.init("style.css","style2.css");
</script>
</body>
</html>