<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>University Management System Login</title> // this is the title of your website you can name it anything you want // <style type="text/css"> <!-- .style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; //////This is where the user defines the font family, it allows the user to select an assortment of fonts. You can look through font types on a text document such as Word to find which ones you want. size is also determined in PX which is pixel. 10px is smaller, 14px is larder.////// } body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #000000; //////This defines the font family in the body an tables. This is pretty much the same as the above category but color is defined differently. Color is defined in Hexadecimal notation. You can google whatever color you want in hexadecimal and place it after "color:". Note you must use the pound sign. /////// } body { background-color: #E9E9E9; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; /////background color is defined by hexadeciaml numbers. margins describe how much space you want away from the browser. 2px, 4px, 6 px//// } a { font-size: 12px; color: #7278F8; } a:link { text-decoration: none; /////changes anything about a hyperlink to another website.///// } a:visited { text-decoration: none; color: #7278F8; ////changes the color of the link when it has been visited before.//// } a:hover { text-decoration: underline; color: #0000A6; ////text-decoration is used here and its underline. What his does is it underlines the link when the mouse is hoovering over the top of the link. There are other text-decorations that can be found as well. Such as making the text bold when scrolled over.//// } a:active { text-decoration: none; color: #7278F8; } .styleSheet { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-weight: normal; ///this is from the imported style sheet in CSS//// } --> </style> </head>
Login to University Management System |