-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>first JavaScript script</title> | ||
<script type="text/javascript"> | ||
window.onload = alert('Loading the window'); | ||
</script> | ||
</head> | ||
<body> | ||
<p>A paragraph that will say <span | ||
onclick="alert('This message is popping up because I clicked here!');" | ||
style="color:blue; text-decoration:underline; cursor:pointer">something very interesting</span> of possibly having an HTML paragraph, perchance.</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title></title> | ||
</head> | ||
<body> | ||
<title>A bar chart showing square miles of Tahiti, Raiatea, and Tongatapu</title> | ||
|
||
<desc>404 sq. miles: Tahiti, 65 sq. miles: Raiatea, 100 sq. miles: Tongatapu</desc> | ||
<text x="85" y="28">Polynesian Island Sizes</text> | ||
<g> | ||
<line x1="94" y1="45" x2="94" y2="116" style="stroke:rgb(255,0,0);stroke-width:2" /> | ||
<line x1="94" y1="115" x2="445" y2="115" style="stroke:rgb(255,0,0);stroke-width:2" /> | ||
<rect x="100" y="50" width="40" height="19" fill="yellow"></rect> | ||
<text x="145" y="52" dy=".35em">Raiatea: 65 square miles</text> | ||
</g> | ||
<g> | ||
<rect x="100" width="80" height="19" y="70" fill="black"></rect> | ||
<text x="185" y="72" dy=".35em">Tongatapu: 100 square miles</text> | ||
</g> | ||
<g> | ||
<rect x="100" width="340" height="19" y="90" fill="green"></rect> | ||
<text x="440" y="92" dy=".35em">Tahiti: 404 square miles</text> | ||
</g> | ||
<g alignment-baseline="baseline"> | ||
</g> | ||
</svg> | ||
</body> | ||
</html> |