-
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.
Base for the mainpage, needs schedule (requires some sort of script) and a different theming which i'm going to appy soon
- Loading branch information
Showing
1 changed file
with
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
body{ | ||
background-color: yellow; | ||
} | ||
table{ | ||
border-collapse: collapse; | ||
} | ||
table, th, td{ | ||
border: 2px black solid; | ||
background-color: rgb(200,200,255) | ||
} | ||
th,td{ | ||
padding: 15px; | ||
} | ||
a{ | ||
text-align:center; | ||
padding:10px; | ||
border: solid 1px black; | ||
display: inline-block; | ||
color: white; | ||
} | ||
a:link, a:visited{ | ||
background-color:blue; | ||
} | ||
a:hover, a:active{ | ||
background-color:powderblue; | ||
} | ||
div{ | ||
background-color: rgb(200,200,255); | ||
text-align:center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div style="width:100%"> | ||
<div style="display:inline;width:25%;padding:0 3%"><a href="http://www.google.com"> Holds and Indicators</a></div> | ||
<div style="display:inline;width:25%;padding:0 3%"><a href="http://www.google.com"> Enrollment Dates</a></div> | ||
<div style="display:inline;width:25%;padding:0 3%"><a href="http://www.google.com"> Advisor</a></div> | ||
<div style="display:inline;width:25%;padding:0 3%"><a href="http://www.google.com"> Links</a></div> | ||
</div> | ||
<div style="width:50%;margin-top:100px"> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
</div> | ||
<div style="width:48%;display:inline-block;margin-top:100px;margin-right:1%"> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
</div> | ||
<div style="width:48%;display:inline-block;margin-left:1%"> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
<div style="width:100%"> | ||
<a href="http://www.google.com"> link will go here</a> | ||
<a href="http://www.google.com"> link will go here</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |