Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Student-Admin-Redesign/MainPageHTML
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
127 lines (127 sloc)
3.71 KB
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body{ | |
background-color: #ffffff; | |
font:arial; | |
overflow:scrollbar; | |
min-width:700px; | |
} | |
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 4%; | |
border: solid 1px black; | |
border-radius: 5px; | |
display: inline-block; | |
margin:1px 10px; | |
} | |
a:link, a:visited{ | |
background-color:#7881a1; | |
} | |
a:hover, a:active{ | |
background-color:#aaaaaa; | |
} | |
div{ | |
background-color: #ffffff; | |
text-align:center; | |
color:white; | |
width:100%; | |
} | |
div.header{ | |
background-color:#000e2f; | |
} | |
</style> | |
</head> | |
<body> | |
<div style="background-color:rgb(18,33,74)"><img style="width:255px;height:98px" src="http://logonoid.com/images/uconn-logo.png"></div> | |
<div style="background-color:rgb(18,33,74)"> | |
<div style="display:inline;width:25%;padding:0 1%;background-color:inherit"><a href="http://www.google.com"> Holds and Indicators</a></div> | |
<div style="display:inline;width:25%;padding:0 1%;background-color:inherit"><a href="http://www.google.com"> Enrollment Dates</a></div> | |
<div style="display:inline;width:25%;padding:0 1%;background-color:inherit"><a href="http://www.google.com"> Advisor</a></div> | |
<div style="display:inline;width:25%;padding:0 1%;background-color:inherit"><a href="http://www.google.com"> Links</a></div> | |
</div> | |
<div style="width:48%;display:inline-block;margin-top:50px;margin-right:1%"> | |
<div class="header">Academics</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<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%;position:relative;bottom:199px"> | |
<div class="header">Schedule</div> | |
</div> | |
<div style="width:48%;display:inline-block;margin-top:50px;margin-right:1%"> | |
<div class="header">Finances</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<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 class="header">Personal Information</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<a href="http://www.google.com"> link will go here</a> | |
<a href="http://www.google.com"> link will go here</a> | |
</div> | |
<div> | |
<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> |