Default.aspx
<%@ Page Language="
VB" AutoEventWireup="false" CodeFile="Default.aspx.
vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="Styles/Styles.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.style1
{
color: #0080FF;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="PageWrapper"></div>
<div id="MainContent">
<h1><a href="Default.aspx" class="style1">1-888-Referral</a></h1>
<p>A Customized Referral Service Specifically Designed for the Dental Specialist and the Referring Office.</p>
<p>You will never miss another Referral</p>
</div>
<div id="Sidebar">Sidebar Goes Here</div>
<div id="Footer">Footer Goes Here</div>
</form>
</body>
</html>
Styles/Styles.css
#Header
{
background-color: #C0C0C0;
width: 844px;
height: 175px;
}
*
{
font-family: Arial;
}
h1
{
font-size: 21px;
}
#PageWrapper
{
width: 844px;
}
#MenuWrapper
{
width: 844px;
}
#MainContent
{
width: 664px;
float: left;
}
#Sidebar
{
background-color: Gray;
width: 180px;
float: left;
}
#Footer
{
background-color: #C0C0C0;
width: 844px;
clear: both;
}
#MainContent a
{
color: #008000; /* Green */
text-decoration: underline;
}
#MainContent a:visited
{
color: #FF0000; /* Red */
text-decoration: underline;
}
#MainContent a:hover
{
color: #FFA500; /* Orange */
text-decoration: underline;
}