-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (105 loc) · 3.56 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<title>FGCU Stellar Research Homepage</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="AstroDev Webviewer - FGCU Stelar Reasearch">
<meta name="designer" content="Lindsey Carboneau">
<meta name="author" content="Lindsey Carboneau">
<meta name="shortcut icon" href="./img/favicon.ico">
<!-- TODO: update with acutal favicon name/path -->
<!-- Bootstrap core CSS and JS resources. Note using 3.3.7, waiting for stable 4.x release -->
<link rel="stylesheet" href="./3.3.7/css/bootstrap.min.css">
<script src="./3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Using the Lato font family to imitate Avenir, FGCU's preferred typeface -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<style>
.navbar {
margin-bottom: 0;
margin-right: 0;
border-radius: 0;
background-color: white;
border: none;
font-family: 'Lato', sans-serif;
font-size: large;
}
.navbar li {
margin-left: 1em;
}
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
.footstyle {
font-family: 'Lato', sans-serif;
font-size: x-small;
}
.setfont {
font-family: 'Lato', sans-serif;
}
.largefont {
font-size: large;
}
.xlfont {
font-size: x-large;
}
.colorfont {
font-color: green;
}
.glyphicon {
display: inline;
}
.smindent {
padding-left: 0.3em;
}
.lgindent {
padding-left: 1em;
}
</style>
</head>
<body>
<div class="page-header">
<!-- This is a good place to put a cover photo type image bar. For now it's just for spacing -->
</div>
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-3 vcenter">
<a href="#"><img src="./img/Logo-draft.png" alt="FGCU Stellar Research" class="img-responsive" style="width:75%"></a>
</div>
</div>
<div class="row">
<!-- Placeholder -->
</div>
<div class="container-fluid">
<div class="row">
<!-- Placeholder -->
</div>
</div>
</body>
<footer>
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-4 footstyle">
<ul style="list-style: none;">
<li><a href="http://www.fgcu.edu">Florida Gulf Coast University</a></li>
<li><a href="http://www.fgcu.edu/WhitakerCenter/index.html">Whitaker Center for STEM Education</a></li>
<li><a href="http://www.fgcu.edu/CAS/Departments/CPhy/index.asp">FGCU Department of Chemistry and Physics</a></li>
</ul>
</div>
<div class="col-md-3">
</div>
<div class="col-md-3 footstyle">
<ul style="list-style: none;">
<li>© 2017 FGCU Stellar Research</li>
</ul>
</div>
<div class="col-md-1">
</div>
</div>
</footer>
</html>