-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
30 lines (28 loc) · 996 Bytes
/
example.html
File metadata and controls
30 lines (28 loc) · 996 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title> Spooky Scary </title>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="haunt.js"></script>
</head>
<body style="background-color: grey">
<div style="background-color:red"> Here's some red text </div>
<br />
<p style="background-color:orange"> Here's some orange text </p>
<br />
<p style="background-color:yellow"> Here's some yellow text </p>
<br />
<p style="background-color:green"> Here's some green text </p>
<br />
<p style="background-color:blue"> Here's some blue text </p>
<br />
<p style="background-color:indigo"> Here's some indigo text </p>
<br />
<p style="background-color:violet"> Here's some violet text </p>
<br />
<p style="background-color:khaki"> Here's some khaki text </p>
<br />
<p style="background-color:salmon"> Here's some salmon text </p>
</body>
</html>