Project

General

Profile

Revision 35

Added by Greg Tress over 16 years ago

revised colonet style

View differences:

index_colonet.html
1
<HTML>
2
<HEAD>
3
<TITLE>Simple Swing Applet Example</TITLE>
4
</HEAD>
5
<BODY>
6
<APPLET archive="Colonet.jar" code="Colonet" width=300 height=150>
7
Your browser does not support Java, so nothing is displayed.
8
</APPLET>
9
</BODY>
10
</HTML>
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3

  
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
5
<head>
6
	<title>Colony Control Applet - Carnegie Mellon Robotics Club</title>
7
	<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
	<link rel="stylesheet" type="text/css" href="colonetstyle.css" />
9
</head>
10

  
11
<body>
12

  
13
<div class="top">
14
	<h1>Colonet: Robot Graph</h1>
15
	<p>Carnegie Mellon Robotics Club: Colony Project</p>
16
	<img src="http://roboclub8.frc.ri.cmu.edu/mainwiki/roboclublogo.png" height="125px" width="110px" alt="RoboClub Logo" />
17
</div>
18

  
19
<div class="app">
20
	<p>
21
	<object
22
		archive = "Colonet.jar"
23
		type = "application/x-java-applet"
24
		width = "800"
25
		height = "700"
26
		align = "bottom"
27
		codebase = "http://roboclub1.frc.ri.cmu.edu/gui/" 
28
		name = "Colonet"
29
		title = "Colonet" >
30
		<param name = "code" value = "Colonet.class" />
31
	</object>
32
	<br />
33
	Requires Java 5.
34
	<br />
35
	<a href="Colonet.java">Source Code</a>
36
	<br />
37
	<br />
38
	</p>
39
</div>
40

  
41
<div class="bottom">
42
	<p><b>Colony Project Home page:</b><br />
43
	<a href="http://www.robotcolony.org/">www.robotcolony.org</a></p>
44
	
45
	<p><b>Validator:</b><br />
46
	<a href="http://validator.w3.org/check?uri=referer">
47
	<img src="http://www.w3.org/Icons/valid-xhtml10-blue"
48
		 alt="Valid XHTML 1.0 Transitional"
49
		 height="31"
50
		 width="88" 
51
		 border="0"
52
		 />
53
	</a>
54
	<a href="http://jigsaw.w3.org/css-validator/validator?uri=http://roboclub1.frc.ri.cmu.edu/ColonetGUI/colonetstyle.css">
55
  	<img style="border:0;width:88px;height:31px"
56
       src="http://www.w3.org/Icons/valid-css-blue" 
57
       alt="Valid CSS!" />
58
	</a><br />
59
	</p>
60
	
61
</div>
62

  
63

  
64

  
65
</body>
66
</html>

Also available in: Unified diff