initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:33:14 -06:00
commit fb566c3af8
43 changed files with 622 additions and 0 deletions

47
contact.htm Normal file
View File

@@ -0,0 +1,47 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='top_bar'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='middle'>
<img name="text" src="graphics/text.png" width="292" height="139" border="0" usemap="#m_text" alt="" align='left'>
<map name="m_text">
<area shape="rect" coords="133,17,287,25" href="http://www.loopnet.com" title="hershewe listings at loopnet.com" alt="hershewe listings at loopnet.com" >
<area shape="rect" coords="106,4,230,14" href="contact.htm" title="contact hershewe" alt="contact hershewe" >
</map>
<div id='contact_info_box'>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right' class='contact_type'>telephone:</td><td>(816) 111-1111</td>
</tr>
<tr>
<td align='right' class='contact_type'>fax:</td><td>(816) 111-1112</td>
</tr>
<tr>
<td align='right' class='contact_type'>e-mail:</td>
<td><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
<tr>
<td align='right' valign='top' class='contact_type'>mail:</td>
<td>
William Hershewe<br />
111 Two Drive<br />
Kansas City, MO 64151
</td>
</tr>
</table>
</div>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
</body>
</html>

92
design1.htm Normal file
View File

@@ -0,0 +1,92 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe.css' type='text/css' rel='stylesheet' />
<script type='text/javascript' language='javascript'>
<!--
if( document.images ) {
var contactus_btn = PreLoad( 'contactus' );
}
function PreLoad(btn) {
var img_path = "./graphics/pngs/"; //file path to find button images
var temp = new Array();
var ext = '.png';
temp[0] = new Image(); //don't know which image we're actually loading
temp[1] = new Image(); //so format temp to hold an image, any image
//then we can use .src to load each button img
temp[0].src = img_path + btn + "1" + ext; //first version: no mouse over image
temp[1].src = img_path + btn + "2" + ext; //second version: mouse over image
return temp;
}
function Swap(btn, mouse_on) {
var img = btn.id;
if(document.images) {
var temp = eval(img);
document[img].src = temp[mouse_on].src;
}
}
//-->
</script>
</head>
<body>
<table width='100%' cellspacing='0' cellpadding='0'>
<tr>
<td id='top_cell'>&nbsp;</td>
</tr>
<tr>
<td id='middle_cell' valign='top'>
<table cellpadding='20' cellspacing='0' border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td align='left' valign='top' width='200'>
<img src='graphics/pngs/logo.png' />
<br /> <br />
</td>
<td width='220' valign='top'>
contact <strong><em>hershewe</em></strong>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right'>telephone:</td><td>(816) 111-1111</td>
</tr>
<tr>
<td align='right'>fax:</td><td>(816) 111-1112</td>
</tr>
<tr>
<td align='right'>e-mail:</td>
<td><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
<tr>
<td align='right' valign='top'>mail:</td>
<td>
William Hershewe<br />
111 Two Drive<br />
Kansas City, MO 64151
</td>
</tr>
</table>
</td>
<td width='200' valign='top'>
view <strong><em>my listings</em></strong>
<div id='listings'>
<a href="http://listings.loopnet.com/bhershewe@kc.rr.com" title="My Listings">
loopnet.com
</a>
</div>
</td>
<td>&nbsp;</td>
</tr>
</table>
<img src='graphics/pngs/slogan.png' id='slogan' />
<div id='slogan_line'>&nbsp;</div>
</td>
</tr>
<tr>
<td id='bottom_cell'>&nbsp;</td>
</tr>
</table>
</body>
</html>

55
design2.htm Normal file
View File

@@ -0,0 +1,55 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<style type='text/css'>
body {
margin: 0px;
background-color: #000000;
}
#main {
background-color: #000000;
}
</style>
<script type='text/javascript' language='javascript'>
<!--
if( document.images ) {
var contactus_btn = PreLoad( 'contactus' );
}
function PreLoad(btn) {
var img_path = "./graphics/pngs/"; //file path to find button images
var temp = new Array();
var ext = '.png';
temp[0] = new Image(); //don't know which image we're actually loading
temp[1] = new Image(); //so format temp to hold an image, any image
//then we can use .src to load each button img
temp[0].src = img_path + btn + "1" + ext; //first version: no mouse over image
temp[1].src = img_path + btn + "2" + ext; //second version: mouse over image
return temp;
}
function Swap(btn, mouse_on) {
var img = btn.id;
if(document.images) {
var temp = eval(img);
document[img].src = temp[mouse_on].src;
}
}
//-->
</script>
</head>
<body>
<div id='main' align='left'>
<div><img src='graphics/pngs/light.png' /></div>
<div style='padding-left:350px'>
<a href=''>
<img src='graphics/pngs/contactus1.png' id='contactus_btn' name='contactus_btn'
onmouseover="Swap(this,1)" onmouseout="Swap(this,0)"
border='0' />
</a>
</div>
</div>
</body>
</html>

54
design3.htm Normal file
View File

@@ -0,0 +1,54 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='main' align='center'>
<div id='big_box'>
<table cellpadding='20' cellspacing='0' border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td align='left' valign='top' width='200'>
<img src='graphics/pngs/logo.png' />
<br /> <br />
</td>
<td width='220' valign='top'>
contact <strong><em>hershewe</em></strong>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right'>telephone:</td><td>(816) 111-1111</td>
</tr>
<tr>
<td align='right'>fax:</td><td>(816) 111-1112</td>
</tr>
<tr>
<td align='right'>e-mail:</td>
<td><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
<tr>
<td align='right' valign='top'>mail:</td>
<td>
William Hershewe<br />
111 Two Drive<br />
Kansas City, MO 64151
</td>
</tr>
</table>
</td>
<td width='200' valign='top'>
view <strong><em>my listings</em></strong>
<div id='listings'>
<a href="http://listings.loopnet.com/bhershewe@kc.rr.com" title="My Listings">
loopnet.com
</a>
</div>
</td>
<td>&nbsp;</td>
</tr>
</table>
<img src='graphics/pngs/slogan.png' id='slogan2' />
</div>
</div>
</body>
</html>

61
design4.htm Normal file
View File

@@ -0,0 +1,61 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='top_bar'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='absmiddle'>
<img name="text" src="graphics/text.jpg" width="292" height="139" border="0" usemap="#m_text" alt="">
<map name="m_text">
<area shape="rect" coords="0,96,164,139"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='hidden';"
title="back to index" alt="back to index" >
<area shape="rect" coords="133,17,287,25" href="http://listings.loopnet.com/bhershewe@kc.rr.com" title="hershewe listings at loopnet.com" alt="hershewe listings at loopnet.com" >
<area shape="rect" coords="106,4,230,14"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='visible';"
title="contact hershewe" alt="contact hershewe" >
</map>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<!--<div>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='absmiddle' id='slogan'>
<em>creative</em> <strong>solutions</strong> for your real <em>estate</em> <strong>needs</strong>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>-->
<div id='contact_info_box' align='center'>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right' class='contact_type'>telephone:</td><td>(816) 111-1111</td>
</tr>
<tr>
<td align='right' class='contact_type'>fax:</td><td>(816) 111-1112</td>
</tr>
<tr>
<td align='right' class='contact_type'>e-mail:</td>
<td><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
<tr>
<td align='right' valign='top' class='contact_type'>mail:</td>
<td>
William Hershewe<br />
111 Two Drive<br />
Kansas City, MO 64151
</td>
</tr>
</table>
</div>
</body>
</html>

78
design5.htm Normal file
View File

@@ -0,0 +1,78 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe5.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='hershewe2'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='left' valign='absmiddle'>
<img name="hershewe2" src="graphics/hershewe2.jpg" width="164" height="43" border="0" usemap="#m_hershewe2" alt="">
<map name="m_hershewe2">
<area shape="rect" coords="0,0,164,43" href="#"
onclick="document.getElementById('contact_info_box').style.visibility='hidden';"
title="back to index" alt="back to index" >
</map>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<div id='top_bar'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='absmiddle'>
<img name="text" src="graphics/text2.jpg" width="292" height="139" border="0" usemap="#m_text" alt="">
<map name="m_text">
<area shape="rect" coords="0,96,164,139"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='hidden';"
title="back to index" alt="back to index" >
<area shape="rect" coords="133,17,287,25" href="http://listings.loopnet.com/bhershewe@kc.rr.com" title="hershewe listings at loopnet.com" alt="hershewe listings at loopnet.com" >
<area shape="rect" coords="106,4,230,14"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='visible';"
title="contact hershewe" alt="contact hershewe" >
</map>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<!--<div>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='absmiddle' id='slogan'>
<em>creative</em> <strong>solutions</strong> for your real <em>estate</em> <strong>needs</strong>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>-->
<div id='contact_info_box' align='center'>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right' class='contact_type'>telephone:</td><td>(816) 111-1111</td>
</tr>
<tr>
<td align='right' class='contact_type'>fax:</td><td>(816) 111-1112</td>
</tr>
<tr>
<td align='right' class='contact_type'>e-mail:</td>
<td><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
<tr>
<td align='right' valign='top' class='contact_type'>mail:</td>
<td>
William Hershewe<br />
111 Two Drive<br />
Kansas City, MO 64151
</td>
</tr>
</table>
</div>
<div id='halo'><img src='graphics/pngs/light.png' /></div>
</body>
</html>

80
design6.htm Normal file
View File

@@ -0,0 +1,80 @@
<html>
<head>
<title>Herschewe Real Estate (herschewe.com)</title>
<link href='hershewe5.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='hershewe2'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='left' valign='absmiddle'>
<img name="hershewe2" src="graphics/hershewe2.jpg" width="164" height="43" border="0" usemap="#m_hershewe2" alt="">
<map name="m_hershewe2">
<area shape="rect" coords="0,0,164,43" href="#"
onclick="document.getElementById('contact_info_box').style.visibility='hidden';"
title="back to index" alt="back to index" >
</map>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<div id='top_bar'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='right' valign='absmiddle'>
<img name="text" src="graphics/text2.jpg" width="292" height="139" border="0" usemap="#m_text" alt="">
<map name="m_text">
<area shape="rect" coords="0,96,164,139"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='hidden';"
title="back to index" alt="back to index" >
<area shape="rect" coords="133,17,287,25" href="http://listings.loopnet.com/bhershewe@kc.rr.com" title="hershewe listings at loopnet.com" alt="hershewe listings at loopnet.com" >
<area shape="rect" coords="106,4,230,14"
href="#" onclick="document.getElementById('contact_info_box').style.visibility='visible';"
title="contact hershewe" alt="contact hershewe" >
</map>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<div id='slogan_box'>
<table border='0' width='100%'>
<tr>
<td>&nbsp;</td>
<td width='677' align='left' valign='absmiddle' id='slogan'>
<em>creative</em> <strong>solutions</strong> for your <em>real estate</em> <strong>needs</strong>
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
<div id='contact_info_box' align='center'>
<table cellpadding='2' cellspacing='0' border='0' id='contact_info'>
<tr>
<td align='right'>residential, call Phil White:</td>
<td class='contact_type'>816-804-7412</td>
</tr>
<tr>
<td align='right'>commercial, call Bill Hershewe:</td>
<td class='contact_type'>816-728-3810</td>
</tr>
<tr>
<td align='right'>office:</td>
<td class='contact_type'>816-741-9200</td>
</tr>
<tr>
<td align='right'>fax:</td>
<td class='contact_type'>816-741-9201</td>
</tr>
<tr>
<td align='right'>e-mail:</td>
<td class='contact_type'><a href='mailto:bhershewe@kc.rr.com'>bhershewe@kc.rr.com</a></td>
</tr>
</table>
</div>
<div id='halo'><img src='graphics/pngs/light2.png' /></div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 KiB

BIN
graphics/bottom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

12
graphics/hershewe2.htm Normal file
View File

@@ -0,0 +1,12 @@
<html>
<head>
<title>hershewe2</title>
<meta http-equiv="Content-Type" content="text/html;">
<!--Fireworks MX 2004 Dreamweaver MX 2004 target. Created Fri Jul 14 20:10:01 GMT-0500 (Central Standard Time) 2006-->
</head>
<body bgcolor="#000000">
<img name="hershewe2" src="hershewe2.jpg" width="164" height="43" border="0" usemap="#m_hershewe2" alt=""><map name="m_hershewe2">
<area shape="rect" coords="0,0,164,43" href="design4.htm" title="back to index" alt="back to index" >
</map>
</body>
</html>

BIN
graphics/hershewe2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
graphics/jpgs/globe.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

BIN
graphics/jpgs/globe2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
graphics/jpgs/globe3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
graphics/kc_panorama.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

BIN
graphics/kc_panorama.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
graphics/pngs/example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
graphics/pngs/globe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 923 KiB

BIN
graphics/pngs/light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 446 KiB

BIN
graphics/pngs/light2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
graphics/pngs/light2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

BIN
graphics/pngs/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 656 KiB

BIN
graphics/pngs/slogan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
graphics/pngs/title.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
graphics/pngs/title2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 KiB

BIN
graphics/text.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
graphics/text.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
graphics/text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 KiB

BIN
graphics/text2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
graphics/text2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 KiB

BIN
graphics/title.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

57
hershewe.css Normal file
View File

@@ -0,0 +1,57 @@
/*****************************
Cascading Style Sheet
for Hershewe.com
*****************************/
body {
font-family: Arial;
margin: 0px;
background-color: #000000;
}
a:link {
color: #CCCCCC;
text-decoration: none;
}
a:visited {
color: #CCCCCC;
text-decoration: none;
}
a:hover {
color: #999999;
text-decoration: none;
}
/*****************************
Main page elements
*****************************/
#contact_info {
position: relative;
top: -110px;
left: 305px;
padding: 0px 0px 0px 10px;
font-size: 11px;
color: #CCCCCC;
}
#contact_info_box {
visibility:hidden;
}
.contact_type {
color: #FFFFFF;
}
#top_bar {
position: relative;
z-index: 3;
margin-top: 90px;
height: 150px;
border-width: 2px 0px 2px 0px;
border-style: solid;
border-color: #666666;
background-color: #000000;
background-image: url(graphics/kc_panorama.jpg);
background-repeat: no-repeat;
background-position: center;
}
#slogan {
font-size: 12px;
color: #999999;
}

73
hershewe5.css Normal file
View File

@@ -0,0 +1,73 @@
/*****************************
Cascading Style Sheet
for Hershewe.com
*****************************/
body {
font-family: Arial;
margin: 0px;
background-color: #000000;
}
a:link {
color: #CCCCCC;
text-decoration: none;
}
a:visited {
color: #CCCCCC;
text-decoration: none;
}
a:hover {
color: #999999;
text-decoration: none;
}
/*****************************
Main page elements
*****************************/
#contact_info {
position: relative;
z-index: 4;
top: -50px;
left: 275px;
padding: 0px 0px 0px 10px;
font-size: 11px;
color: #CCCCCC;
}
#contact_info_box {
visibility:hidden;
}
.contact_type {
color: #FFFFFF;
}
#top_bar {
position: relative;
z-index: 3;
top: 90px;
height: 150px;
border-width: 2px 0px 2px 0px;
border-style: solid;
border-color: #999999;
background-color: #000000;
background-image: url(graphics/kc_panorama.jpg);
background-repeat: no-repeat;
background-position: center;
}
#slogan_box {
position: relative;
z-index: 4;
top: -89px;
padding-left: 350px;
}
#slogan {
font-size: 12px;
color: #FFFFFF;
}
#halo {
position: relative;
z-index: 2;
top: -25px;
}
#hershewe2 {
position: relative;
top: 90px;
}

13
index.htm Normal file
View File

@@ -0,0 +1,13 @@
<html>
<body>
<ul>
<li><a href='design1.htm'>Design 1</a></li>
<li><a href='design2.htm'>Design 2</a></li>
<li><a href='design3.htm'>Design 3</a></li>
<li><a href='design4.htm'>Design 4</a></li>
<li><a href='design5.htm'>Design 5</a></li>
<li><a href='design6.htm'>Design6</a></li>
</ul>
</body>
</html>