Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create MainPageHTML
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
jjm14012 committed Nov 2, 2016
1 parent 4e9a930 commit 5152e3c
Showing 1 changed file with 111 additions and 0 deletions.
111 changes: 111 additions & 0 deletions MainPageHTML
@@ -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>

0 comments on commit 5152e3c

Please sign in to comment.