-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.html
113 lines (103 loc) · 3.49 KB
/
paths.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Paths</title>
<!-- Stylesheet -->
<style type="text/css">
table.t1 {
margin-top : 150px;
margin-left : auto;
margin-right : auto;
position : relative;
border-spacing : 40px 10px;
}
table.t2 {
margin-top : 50px;
margin-left : auto;
margin-right : auto;
position : relative;
border-spacing : 40px 10px;
}
td {
text-align : center
}
td.image {
width : 480px;
background : #FFFFFF;
width : 6em;
margin-top : 65px;
height : 100px;
border-style : dashed;
border-color : #d5d5d5;
border-width : 5px;
}
td.image_full {
width : 480px;
background : #FFFFFF;
width : 6em;
margin-top : 65px;
height : 100px;
}
img {
border : 4px solid #021a40;
border-color : #6a6444
}
#title {
margin : 0 0 0 250px;
padding : 0 20px 20px 20px;
height : 30px;
font-family : "courier", monospace;
font-size : 3.5em;
}
a {
color : #313131;
text-decoration : none;
}</style>
</head>
<body>
<div id="container">
<table class="t1">
<tr>
<td class="image_full">
<a href="/text/intro.html"
onMouseOver="document.sub_but.src='images/pensive_color.jpg'"
onMouseOut="document.sub_but.src='images/pensive_sepia.jpg'">
<img src="images/pensive_sepia.jpg" alt="First Pitch"
name="sub_but" height="100%" width="100%" border="0"
/></a></td>
<!--
<img src="images/pensive.jpg"
alt="pensive" height="100%" width="100%" /> -->
<td class="image"></td>
<td class="image"></td>
<td class="image"></td>
<td class="image"></td>
</tr>
<tr>
<td>0</td>
<td>I</td>
<td>II</td>
<td>III</td>
<td>IV</td>
</tr>
</table>
<table class="t2">
<tr>
<td class="image"></td>
<td class="image"></td>
<td class="image"></td>
<td class="image"></td>
<td class="image"></td>
</tr>
<tr>
<td>VI</td>
<td>VII</td>
<td>VIII</td>
<td>IX</td>
<td>X</td>
</tr>
</table>
</div>
</body>
</html>