File tree 6 files changed +103
-34
lines changed
6 files changed +103
-34
lines changed Original file line number Diff line number Diff line change
1
+ . * .sw *
Original file line number Diff line number Diff line change
1
+ This is the source code for the website of FIRST robotics team 2945. See it in action at http://www.manitourobotics.com/ (may or may not be up to date with the current head)
2
+
3
+ You can run all the code with an some form of AMP(Apache, MySQL, PHP).
4
+
5
+ I would like feed back, and opening issue is certainly welcome.
6
+
7
+ contacts:
8
+ azrathud@gmail.com
Original file line number Diff line number Diff line change 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 >
5
-
6
- <title >Welcome </title >
7
-
1
+ <!DOCTYPE HTML>
2
+ <html lang =" en" >
8
3
<head >
9
-
10
- < style type = " text/css " media = " all " > @import " master.css " ; </ style >
11
-
4
+ < meta charset = " UTF-8 " >
5
+ < link rel = " shortcut icon " href = " ./favicon.ico " >
6
+ < title >2945</ title >
12
7
</head >
13
-
14
8
<body >
15
- <div id = " navigation" >
16
- <a href = " index.php" ><img id = " hometab" src = " hometab.JPG" alt = " Home" /></a >
17
- <a href = " index.php" ><img id = " hometab" src = " hometab.JPG" alt = " Home" /></a >
18
- <a href = " index.php" ><img id = " hometab" src = " hometab.JPG" alt = " Home" /></a >
19
- <a href = " index.php" ><img id = " hometab" src = " hometab.JPG" alt = " Home" /></a >
20
- </div >
21
-
22
- <div id = " header" >
23
- <div id = " logo" >
24
- <h4 >Logo image goes here.</h4 >
25
- </div >
26
-
27
- <div id = " firstlogo" >
28
- <a href = " http://www.usfirst.org" target = " _blank" ><img id = " firstlogoimg" src = " firstlogo.png" alt = " FIRST Robotics Logo" /></a >
29
- </div >
30
- </div >
31
-
32
- <div id = " container" >
33
-
34
-
35
- </div >
9
+ <div id = " nav" >
10
+ <li class = " nav" >Home</li >
11
+ <li class = " nav" >Our Team</li >
12
+ <li class = " nav" >Events</li >
13
+ <li class = " nav" >Sponsors</li >
14
+ <li class = " nav" >Resources</li >
15
+ <li class = " nav" >Calendar</li >
16
+ <li class = " nav" >Contact</li >
17
+ <li class = " nav" ></li >
18
+ </div >
19
+ <div id = " outside-links" >
20
+ </div >
21
+
36
22
</body >
37
-
38
23
</html >
39
-
Original file line number Diff line number Diff line change
1
+ /*Master.css document for styling the website.*/
2
+
3
+ /*Header*/
4
+
5
+ body
6
+ {
7
+ background-color : black;
8
+ margin : 0 ;
9
+ padding : 0 ;
10
+ }
11
+
12
+ # container
13
+ {
14
+ width : 100% ;
15
+ height : 800px ;
16
+ overflow : auto;
17
+ background-color : gray;
18
+ }
19
+ # header
20
+ {
21
+ width : 100% ;
22
+ height : 200px ;
23
+ color : red;
24
+ }
25
+
26
+ # logo
27
+ {
28
+ height : 200px ;
29
+ padding : 5px ;
30
+ float : left;
31
+ }
32
+
33
+ # navigation
34
+ {
35
+ position : absolute;
36
+ right : 0px ;
37
+ top : 0px ;
38
+ padding : 0px ;
39
+ float : right;
40
+ }
41
+
42
+ /*ul
43
+ {
44
+ list-style-type:none;
45
+ margin-right: 0px;
46
+ margin-top: 0px;
47
+ padding-top: 0px;
48
+ padding-right: 0px;
49
+ overflow: hidden;
50
+ position: relative;
51
+ }
52
+
53
+ li
54
+ {
55
+ float: right;
56
+
57
+ }
58
+
59
+ #navigation a:link,a:visited
60
+ {
61
+ display: block;
62
+ width: 125px;
63
+ font-weight: bold;
64
+ color: #FFFFFF;
65
+ background-color: #000000;
66
+ text-align: center;
67
+ padding: 4px;
68
+ text-decoration: none;
69
+ text-transform: uppercase;
70
+ }
71
+
72
+ #navigation a:hover,a:active
73
+ {
74
+ background-color: #DAA520;
75
+ }
76
+ */
You can’t perform that action at this time.
0 commit comments