huge site refactoring
134
Default.cfm
@ -1,134 +0,0 @@
|
|||||||
<!DOCTYPE HTML>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title>Home Page - FemboyFinancial Online Webportal</title>
|
|
||||||
<style>
|
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
width: 640px;
|
|
||||||
height: 480px;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
background-image: url('assets/ice.gif');
|
|
||||||
}
|
|
||||||
.toplinks a {
|
|
||||||
margin: 0 6px;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
.copyright {
|
|
||||||
color: #0066CC;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.footer {
|
|
||||||
margin-top: 20px;
|
|
||||||
font-size: 12px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.footerlinks a {
|
|
||||||
margin: 0 24px;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
hr {
|
|
||||||
border: 3px solid #EE2D24;
|
|
||||||
margin: 8px;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
margin: 0 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Main page links */
|
|
||||||
td h4 {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
td img {
|
|
||||||
display: inline;
|
|
||||||
float: left;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
td span {
|
|
||||||
color: #3A7FF1;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img height="69" width="640" src="assets/Homepage.gif">
|
|
||||||
<marquee></marquee>
|
|
||||||
<div class="toplinks">
|
|
||||||
<a href="/Events.cfm">New Company Events</a>
|
|
||||||
<a href="/Products.cfm">Our Products</a>
|
|
||||||
<a href="/Help.cfm">Help</a>
|
|
||||||
<a href="/About.cfm">About Us</a>
|
|
||||||
<a href="/Contact.cfm">Contact Us</a>
|
|
||||||
<a href="/Sitemap.cfm">Site Map</a>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<table cellpadding="10" border="0">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<h4><a href="/Events.cfm">New Company Events</a></h4>
|
|
||||||
<img width="59" height="39">
|
|
||||||
<span>See what happened while FemboyFinancial was at the World Banking Summit 2020!</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<h4><a href="/About.cfm">About Us</a></h4>
|
|
||||||
<img width="65" height="42">
|
|
||||||
<span>Find out about our history and how we came to be. Subsidiary and other useful information is here to!</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<h4><a href="/Products.cfm">Our Products</a></h4>
|
|
||||||
<img width="47" height="46">
|
|
||||||
<span>Check out deposit accounts and loans! Banking for the 21st century.</span>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<h4><a href="/Contact.cfm">Contact Us</a></h4>
|
|
||||||
<img width="53" height="65">
|
|
||||||
<span>Business address, phone numbers and more.</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<h4><a href="/Help.cfm">Help</a></h4>
|
|
||||||
<img width="29" height="42">
|
|
||||||
<span>Stuck? Click here to get connected to our world-class customer service desk!</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="footer">
|
|
||||||
<p class="copyright">© 2019 FemboyFinancial Holdings Co., Ltd. (USA LLC)</p>
|
|
||||||
<div class="footerlinks">
|
|
||||||
<a href="/Terms.cfm">Terms of Use</a>
|
|
||||||
<a href="/Privacy.cfm">Privacy</a>
|
|
||||||
<a href="/Careers.cfm">Careers</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script>
|
|
||||||
var marq = document.querySelector('marquee');
|
|
||||||
var timeStr, stockPriceDelta, stockPriceDirection;
|
|
||||||
var i = 0;
|
|
||||||
function updateTimestamp() {
|
|
||||||
timeStr = new Date().toLocaleTimeString();
|
|
||||||
}
|
|
||||||
function updateStockPrice() {
|
|
||||||
stockPriceDelta = Math.floor(Math.random() * 10000) / 100;
|
|
||||||
stockPriceDirection = Math.random() < 0.5;
|
|
||||||
}
|
|
||||||
function renderMarquee() {
|
|
||||||
updateTimestamp();
|
|
||||||
if (i % 10 === 0) updateStockPrice();
|
|
||||||
var stockPriceArrow = stockPriceDirection ? "▲" : "▼";
|
|
||||||
var stockPriceColor = stockPriceDirection ? "green" : "red";
|
|
||||||
marq.innerHTML = timeStr + " - FEM <span style=\"color:" + stockPriceColor + ";\">" + stockPriceArrow + " " + stockPriceDelta + "</span>";
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
setInterval(renderMarquee, 1000);
|
|
||||||
renderMarquee();
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
19
README.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# FemboyFinancial.co.jp
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
- Macromedia ColdFusion 5
|
||||||
|
|
||||||
|
- Web server (recommended: IIS 5.0)
|
||||||
|
|
||||||
|
- A computer from 2001, preferably running 32-bit XP
|
||||||
|
|
||||||
|
## Browser Compatibility
|
||||||
|
|
||||||
|
The website is optimized for Internet Explorer 8 and above. That being said, it will still hold up pretty well on older browsers.
|
||||||
|
|
||||||
|
## Deployment
|
||||||
|
|
||||||
|
- staging site is located at ff.howfeed.biz
|
||||||
|
|
||||||
|
- production will be at femboyfinancial.co.jp (not yet purchased)
|
@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
<bgsound src="assets/click.wav"></bgsound>
|
|
BIN
favicon.ico
Before Width: | Height: | Size: 91 KiB |
341
index.html
@ -1,341 +0,0 @@
|
|||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso8859-1">
|
|
||||||
<title>Welcome to Microsoft's Homepage</title>
|
|
||||||
<meta http-equiv="PICS-Label" content="(PICS-1.1 "http://www.rsac.org/ratingsv01.html" l gen true comment "RSACi North America Server" by "inet@microsoft.com" for "/" on "1997.06.30T14:21-0500" r (n 0 s 0 v 0 l 0))">
|
|
||||||
<meta name="KEYWORDS" content="products; headlines; downloads; news; Web site; what's new; solutions; services; software; contests; corporate news;">
|
|
||||||
<meta name="DESCRIPTION" content="The entry page to Microsoft's Web site. Find software, solutions and answers. Support, and Microsoft news.">
|
|
||||||
<meta name="MS.LOCALE" content="EN-US">
|
|
||||||
<meta name="CATEGORY" content="home page">
|
|
||||||
<style type="text/css">
|
|
||||||
<!--
|
|
||||||
A:link {color:"#003399";}
|
|
||||||
A:visited {color:"#800080";}
|
|
||||||
A:hover {color:"#FF3300";}
|
|
||||||
-->
|
|
||||||
</style>
|
|
||||||
<script language="JavaScript">
|
|
||||||
<!--
|
|
||||||
var userAgent = navigator.userAgent;
|
|
||||||
var MSIEIndex = userAgent.indexOf("MSIE");
|
|
||||||
if (userAgent.indexOf("Win") != -1 &&
|
|
||||||
userAgent.indexOf("MSIE") != -1 &&
|
|
||||||
userAgent.substring((MSIEIndex + 5),(MSIEIndex + 6)) > 4)
|
|
||||||
window.location.replace("ms.htm");
|
|
||||||
//-->
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body onload="loadPage(100);" vlink="#003399" topmargin="0" text="#000000" marginwidth="0" marginheight="0" link="#003399" leftmargin="0" bgcolor="#FFFFFF" alink="#003399"><!-- BEGIN WAYBACK TOOLBAR INSERT -->
|
|
||||||
<style type="text/css">
|
|
||||||
body {
|
|
||||||
margin-top:0 !important;
|
|
||||||
padding-top:0 !important;
|
|
||||||
/*min-width:800px !important;*/
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script language="JavaScript" src="/web/20010501034329js_/http://www.microsoft.com/library/toolbar/toolbar.js"></script>
|
|
||||||
<script language="JavaScript" src="/web/20010501034329js_/http://www.microsoft.com/library/toolbar/en-us/globalHP9.js"></script>
|
|
||||||
<script language="JavaScript" src="/web/20010501034329js_/http://www.microsoft.com/library/toolbar/en-us/localHP9.js"></script>
|
|
||||||
<script language="JavaScript" src="/web/20010501034329js_/http://www.microsoft.com/library/homepage/include/hpmain.js"></script>
|
|
||||||
<span id="TBDownLevelDiv">
|
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0" bgcolor="#FFFFFF">
|
|
||||||
<tbody><tr>
|
|
||||||
<td rowspan="2" valign="TOP" height="60"><a href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/" target="_top"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/ms-banner.gif" alt="Microsoft Home" width="250" height="60" border="0"></a></td>
|
|
||||||
<td valign="TOP" height="20" align="RIGHT"><img src="/web/20010501034329im_/http://www.microsoft.com/library/toolbar/images/curve.gif" alt="" width="18" height="20" border="0"></td>
|
|
||||||
<td colspan="2" valign="MIDDLE" nowrap="" height="20" bgcolor="#000000" align="RIGHT">
|
|
||||||
<font size="1" face="Verdana, Arial" color="#FFFFFF">
|
|
||||||
<b>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/catalog/default.asp?subid=22" target="_top"><font color="#FFFFFF">All Products</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/support/" target="_top"><font color="#FFFFFF">Support</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gosearch.asp?target=/us/default.asp" target="_top"><font color="#FFFFFF">Search</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/" target="_top"><font color="#FFFFFF">microsoft.com Home</font></a>
|
|
||||||
|
|
||||||
</b>
|
|
||||||
</font></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td width="19" valign="TOP" height="40"><img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="19" height="40" border="0"></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td colspan="4" valign="MIDDLE" nowrap="" height="20" bgcolor="#0099FF">
|
|
||||||
<font size="1" face="Verdana, Arial" color="#FFFFFF"><b>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/" target="_top"><font color="#FFFFFF">Home</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/usa/events/default.asp" target="_top"><font color="#FFFFFF">Events/Training</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/goregwiz.asp?target=/regsys/pic.asp?sec=0" target="_top"><font color="#FFFFFF">Subscribe</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/mscorp/" target="_top"><font color="#FFFFFF">About Microsoft</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/worldwide/" target="_top"><font color="#FFFFFF">US/Worldwide</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/gomscom.asp?target=/downloads/" target="_top"><font color="#FFFFFF">Downloads</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="/web/20010501034329/http://www.microsoft.com/isapi/goregwiz.asp?target=/contactus/contactus.asp" target="_top"><font color="#FFFFFF">Contact Us</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
|
|
||||||
|
|
||||||
<a style="color:#FFFFFF;text-decoration:none;" href="https://web.archive.org/web/20010501034329/http://msn.com/" target="_top"><font color="#FFFFFF">MSN.com</font></a>
|
|
||||||
|
|
||||||
<font color="#FFFFFF">|</font>
|
|
||||||
</b></font></td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
</span>
|
|
||||||
<script language="JavaScript">
|
|
||||||
<!--// Hide from old browsers
|
|
||||||
var ToolBar_Supported = ToolBar_Supported;
|
|
||||||
if (ToolBar_Supported != null && ToolBar_Supported == true)
|
|
||||||
{
|
|
||||||
TBDownLevelDiv.style.display = "none";
|
|
||||||
setICPBanner("/library/homepage/images/ms-banner.gif","","Microsoft Home");
|
|
||||||
drawToolbar();
|
|
||||||
}//-->
|
|
||||||
</script>
|
|
||||||
<basefont face="Verdana, Arial, Helvetica" size="3">
|
|
||||||
<table width="626px" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr>
|
|
||||||
<td width="7"><img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0"></td>
|
|
||||||
<td width="158" valign="TOP">
|
|
||||||
<font size="1" face="Verdana, Arial, Helvetica">
|
|
||||||
<form>
|
|
||||||
<b>Search</b><br>
|
|
||||||
<input style="font-size:10px;" type="TEXT" name="qu" tabindex="1" size="20" maxsize="40" value="">
|
|
||||||
<input style="font-weight:normal;font-size:10px;" type="BUTTON" name="btnSearch" onclick="trackSearch(qu, 'HP_SEARCH1');" tabindex="2" value="GO">
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</font>
|
|
||||||
<font size="1" face="Verdana, Arial, Helvetica">
|
|
||||||
<b>Product Family Sites</b><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Product-Family-Sites]1');" href="/web/20010501034329/http://www.microsoft.com/windows/">Windows</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Product-Family-Sites]2');" href="/web/20010501034329/http://www.microsoft.com/office/">Office</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Product-Family-Sites]3');" href="/web/20010501034329/http://www.microsoft.com/Servers/">Servers</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Product-Family-Sites]4');" href="https://web.archive.org/web/20010501034329/http://msdn.microsoft.com/vstudio/">Developer Tools</a><br>
|
|
||||||
<br>
|
|
||||||
<b>Web Services</b><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Web-Services]1');" href="https://web.archive.org/web/20010501034329/http://office.microsoft.com/services/">Office eServices</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Web-Services]2');" href="https://web.archive.org/web/20010501034329/http://windowsupdate.microsoft.com/">Windows Update</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Web-Services]3');" href="https://web.archive.org/web/20010501034329/http://www.msn.com/">MSN</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Web-Services]4');" href="https://web.archive.org/web/20010501034329/http://on.linkexchange.com/?ATID=15&AID=1191">bCentral</a><br>
|
|
||||||
<br>
|
|
||||||
<b>Customer Sites</b><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]1');" href="/web/20010501034329/http://www.microsoft.com/insider/">Home & Personal</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]2');" href="/web/20010501034329/http://www.microsoft.com/business/">Business</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]3');" href="/web/20010501034329/http://www.microsoft.com/technet/">IT Professional</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]4');" href="https://web.archive.org/web/20010501034329/http://msdn.microsoft.com/">Developer</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]5');" href="/web/20010501034329/http://www.microsoft.com/directaccess/">Partner/Reseller</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Customer-Sites]6');" href="/web/20010501034329/http://www.microsoft.com/education/">Education</a><br>
|
|
||||||
<br>
|
|
||||||
<b>Resources</b><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]1');" href="https://web.archive.org/web/20010501034329/http://shop.microsoft.com/">Order Microsoft Products</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]2');" href="https://web.archive.org/web/20010501034329/http://mspress.microsoft.com/">Microsoft Press Books</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]3');" href="/web/20010501034329/http://www.microsoft.com/presspass/">Media Information</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]4');" href="/web/20010501034329/http://www.microsoft.com/misc/mstw/">Newsletters</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]5');" href="/web/20010501034329/http://www.microsoft.com/jobs/">Microsoft Jobs</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]6');" href="/web/20010501034329/http://www.microsoft.com/info/privacy.htm">Privacy Statement</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]7');" href="/web/20010501034329/http://www.microsoft.com/freedomtoinnovate/">Freedom to Innovate</a><br>
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="9" height="1" border="0">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NAV_[Resources]8');" href="https://web.archive.org/web/20010501034329/http://support.microsoft.com/directory/">Support</a><br>
|
|
||||||
<br>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
<td width="1" bgcolor="#6699CC"><img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="1" height="1" border="0"></td>
|
|
||||||
<td width="440px" valign="TOP" align="LEFT">
|
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr>
|
|
||||||
<td width="300px" valign="TOP">
|
|
||||||
<table width="280px" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr><td>
|
|
||||||
<a onclick="trackInfo(this, 'HP_TOPSTORY1_23149');" href="/web/20010501034329/http://www.microsoft.com/office/xp/"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/ts_010430officexp.gif" alt="Celebrate Clippy's demise at an Office XP launch event" border="0"></a></td></tr>
|
|
||||||
</tbody></table>
|
|
||||||
<table width="280px" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr><td>
|
|
||||||
<img usemap="#initiative_map" src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/inits_010430.gif" border="0"></td></tr>
|
|
||||||
</tbody></table>
|
|
||||||
</td>
|
|
||||||
<td width="140px" valign="TOP">
|
|
||||||
<img src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" width="1" height="10" border="0"><br>
|
|
||||||
<table width="140px" cellspacing="0px" cellpadding="0" border="0"><tbody><tr><td>
|
|
||||||
<table class="HPFrameTab" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr id="HPFrameHLTab" valign="middle" bgcolor="#CCCCCC">
|
|
||||||
<td align="right"><img id="HPFrameHLTab1" src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/curve.gif" alt="" border="0"></td>
|
|
||||||
<td width="100%" height="10" align="left">
|
|
||||||
<font id="HPFrameHLTab2" size="1" face="verdana,arial,helvetica" color="#336699">
|
|
||||||
<b>Today's News</b>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
<td align="left"><img id="HPFrameHLTab3" src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" onmouseover="this.style.cursor='hand';" onmouseout="this.style.cursor='default';" onclick="showHideContent('HPFrameHL');" border="0"></td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
<div id="HPFrameHLContent">
|
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr><td colspan="3" height="5"></td></tr>
|
|
||||||
<tr><td valign="TOP"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/bullet2.gif" alt="" width="7px" hspace="0" height="10" border="0"></td>
|
|
||||||
<td width="3px"> </td>
|
|
||||||
<td><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NEWSGENERAL1_23151');" href="https://web.archive.org/web/20010501034329/http://shop.microsoft.com/redir/officexp8.htm">Pre-order Office XP</a><br>
|
|
||||||
for launch day and get free shipping. U.S. only.
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr><td colspan="3" height="5"></td></tr>
|
|
||||||
<tr><td valign="TOP"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/bullet2.gif" alt="" width="7px" hspace="0" height="10" border="0"></td>
|
|
||||||
<td width="3px"> </td>
|
|
||||||
<td><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NEWSGENERAL2_23104');" href="https://web.archive.org/web/20010501034329/http://msdn.microsoft.com/events/teched/">Be among the first</a><br>
|
|
||||||
to get Microsoft Visual Studio.NET Beta 2 by attending Tech·Ed.
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr><td colspan="3" height="5"></td></tr>
|
|
||||||
<tr><td valign="TOP"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/bullet2.gif" alt="" width="7px" hspace="0" height="10" border="0"></td>
|
|
||||||
<td width="3px"> </td>
|
|
||||||
<td><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<a onclick="trackInfo(this, 'HP_NEWSGENERAL3_22932');" href="/web/20010501034329/http://www.microsoft.com/windowsxp/home/default.asp">Windows XP at home:</a><br>
|
|
||||||
See how you'll get a lot more from your PC.
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr valign="TOP">
|
|
||||||
<td colspan="2"> </td>
|
|
||||||
<td nowrap=""><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<br>
|
|
||||||
<a href="/web/20010501034329/http://www.microsoft.com/morenews.htm" onclick="trackInfo(this, 'HP_MORENEWS');"><b>More News</b></a>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
</div>
|
|
||||||
</td></tr></tbody></table>
|
|
||||||
<br>
|
|
||||||
<table width="140px" cellspacing="0px" cellpadding="0" border="0"><tbody><tr><td>
|
|
||||||
<table class="HPFrameTab" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr id="HPFrameDLTab" valign="middle" bgcolor="#CCCCCC">
|
|
||||||
<td align="right"><img id="HPFrameDLTab1" src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/curve.gif" alt="" border="0"></td>
|
|
||||||
<td width="100%" height="10" align="left">
|
|
||||||
<font id="HPFrameDLTab2" size="1" face="verdana,arial,helvetica" color="#336699">
|
|
||||||
<b>New Downloads</b>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
<td align="left"><img id="HPFrameDLTab3" src="/web/20010501034329im_/http://www.microsoft.com/library/images/gifs/homepage/1ptrans.gif" alt="" onmouseover="this.style.cursor='hand';" onmouseout="this.style.cursor='default';" onclick="showHideContent('HPFrameDL');" border="0"></td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
<div id="HPFrameDLContent">
|
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tbody><tr><td colspan="3" height="5"></td></tr>
|
|
||||||
<tr><td valign="TOP"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/bullet2.gif" alt="" width="7px" hspace="0" height="10" border="0"></td>
|
|
||||||
<td width="3px"> </td>
|
|
||||||
<td><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<a onclick="trackInfo(this, 'HP_DOWNLOADS1_22987');" href="/web/20010501034329/http://www.microsoft.com/windows/ie/preview/default.asp">Internet Explorer 6 Preview Edition</a><br>
|
|
||||||
offers new integrated messaging and privacy features.
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr><td colspan="3" height="5"></td></tr>
|
|
||||||
<tr><td valign="TOP"><img src="/web/20010501034329im_/http://www.microsoft.com/library/homepage/images/bullet2.gif" alt="" width="7px" hspace="0" height="10" border="0"></td>
|
|
||||||
<td width="3px"> </td>
|
|
||||||
<td><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<a onclick="trackInfo(this, 'HP_DOWNLOADS2_21274');" href="/web/20010501034329/http://www.microsoft.com/windows2000/downloads/recommended/sp1/default.asp">Windows 2000 SP1</a><br>
|
|
||||||
has the latest in compatibility, setup, reliability, and security updates.
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr valign="TOP">
|
|
||||||
<td colspan="2"> </td>
|
|
||||||
<td nowrap=""><font size="1" face="verdana,arial,helvetica">
|
|
||||||
<br>
|
|
||||||
<a href="/web/20010501034329/http://www.microsoft.com/downloads/search.asp" onclick="trackInfo(this, 'HP_MOREDOWNLOADS');"><b>More Downloads</b></a>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
</div>
|
|
||||||
</td></tr></tbody></table>
|
|
||||||
</td>
|
|
||||||
</tr></tbody></table>
|
|
||||||
<br><hr size="1" noshade="" color="#CCCCCC">
|
|
||||||
<font size="1" face="Verdana, Arial, Helvetica">
|
|
||||||
Last Updated: Monday, April 30, 2001 - 4:42 p.m. Pacific Time<br>
|
|
||||||
©2001 Microsoft Corporation. All rights reserved. <a href="/web/20010501034329/http://www.microsoft.com/info/cpyright.htm">Terms of Use</a><br>
|
|
||||||
<nobr>
|
|
||||||
<a href="default_text.htm">Text-only Home Page</a>
|
|
||||||
<font color="#3366CC">|</font>
|
|
||||||
<a href="/web/20010501034329/http://www.microsoft.com/enable/telecomm.htm">Disability/accessibility</a>
|
|
||||||
<font color="#3366CC">|</font>
|
|
||||||
<a href="/web/20010501034329/http://www.microsoft.com/isapi/goregwiz.asp?target=/contactus/contactus.asp">Contact Us</a>
|
|
||||||
<font color="#3366CC">|</font>
|
|
||||||
<a href="/web/20010501034329/http://www.microsoft.com/info/privacy.htm">Privacy Statement</a><br>
|
|
||||||
</nobr>
|
|
||||||
<!--<IMG SRC="/library/images/gifs/homepage/1ptrans.gif" WIDTH="1" HEIGHT="10" ALT="" BORDER="0" />-->
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody></table>
|
|
||||||
|
|
||||||
<map name="initiative_map"><area href="/web/20010501034329/http://www.microsoft.com/exchange/" onclick="trackInfo(this, 'HP_TOPINITIATIVE_GIF1');" shape="RECT" coords="0,0,170,74">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/technet/exchange/guide/default.asp" onclick="trackInfo(this, 'HP_TOPINITIATIVE1_23135');" shape="RECT" coords="170,0,279,74">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/business/ecommerce/" onclick="trackInfo(this, 'HP_TOPINITIATIVE_GIF2');" shape="RECT" coords="0,74,170,150">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/Business/ecommerce/casestudies/microsoftintel/hrblock.asp" onclick="trackInfo(this, 'HP_TOPINITIATIVE2_22975');" shape="RECT" coords="170,74,279,150">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/windows2000/guide/professional/solutions/overview/" onclick="trackInfo(this, 'HP_TOPINITIATIVE_GIF3');" shape="RECT" coords="0,150,170,224">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/technet/profwin/default.asp" onclick="trackInfo(this, 'HP_TOPINITIATIVE3_23032');" shape="RECT" coords="170,150,279,224">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/office/xp/" onclick="trackInfo(this, 'HP_TOPINITIATIVE_GIF4');" shape="RECT" coords="0,224,170,299">
|
|
||||||
<area href="/web/20010501034329/http://www.microsoft.com/office/trial/default.htm" onclick="trackInfo(this, 'HP_TOPINITIATIVE4_23084');" shape="RECT" coords="170,224,279,299">
|
|
||||||
</map>
|
|
||||||
|
|
||||||
<script language="JavaScript" src="js/click.js"></script>
|
|
||||||
<bgsound src="assets/click.wav"></bgsound>
|
|
||||||
</body></html>
|
|
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Sprites Demo</title>
|
<title>Sprites Demo</title>
|
||||||
<link rel="stylesheet" href="assets/icons.css">
|
<link rel="stylesheet" href="public/assets/icons.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
My Computer
|
My Computer
|
40
public/Default.cfm
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<cfset pagetitle = "Home Page">
|
||||||
|
<cfinclude template="../templates/Header.cfm">
|
||||||
|
|
||||||
|
<table cellpadding="10" border="0">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<h4><a href="/Events.cfm">New Company Events</a></h4>
|
||||||
|
<img width="59" height="39">
|
||||||
|
<span>See what happened while FemboyFinancial was at the World Banking Summit 2020!</span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h4><a href="/About.cfm">About Us</a></h4>
|
||||||
|
<img width="65" height="42">
|
||||||
|
<span>Find out about our history and how we came to be. Subsidiary and other useful information is here to!</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<h4><a href="/Products.cfm">Our Products</a></h4>
|
||||||
|
<img width="47" height="46">
|
||||||
|
<span>Check out deposit accounts and loans! Banking for the 21st century.</span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h4><a href="/Contact.cfm">Contact Us</a></h4>
|
||||||
|
<img width="53" height="65">
|
||||||
|
<span>Business address, phone numbers and more.</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<h4><a href="/Help.cfm">Help</a></h4>
|
||||||
|
<img width="29" height="42">
|
||||||
|
<span>Stuck? Click here to get connected to our world-class customer service desk!</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<cfinclude template="../templates/Footer.cfm">
|
12
public/Downloads.cfm
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Download Centre - FemboyFinancial Online Webportal</title>
|
||||||
|
<link rel="stylesheet" href="/css/main.css">
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
public/assets/DownloadCentre.gif
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
public/assets/Downloads.gif
Normal file
After Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -1,7 +1,7 @@
|
|||||||
.sprite {
|
.sprite {
|
||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
background-image: url(icons.png);
|
background-image: url(XpIcons.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
.s1 {
|
.s1 {
|
Before Width: | Height: | Size: 566 KiB After Width: | Height: | Size: 566 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
47
public/css/main.css
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
width: 640px;
|
||||||
|
height: 480px;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-image: url('/assets/ice.gif');
|
||||||
|
}
|
||||||
|
.toplinks a {
|
||||||
|
margin: 0 6px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.copyright {
|
||||||
|
color: #0066CC;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
margin-top: 20px;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.footerlinks a {
|
||||||
|
margin: 0 24px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
border: 3px solid #EE2D24;
|
||||||
|
margin: 8px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main page links */
|
||||||
|
td h4 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
td img {
|
||||||
|
display: inline;
|
||||||
|
float: left;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
td span {
|
||||||
|
color: #3A7FF1;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 1.4 KiB |
20
public/js/marquee.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
var marq = document.querySelector('marquee');
|
||||||
|
var timeStr, stockPriceDelta, stockPriceDirection;
|
||||||
|
var i = 0;
|
||||||
|
function updateTimestamp() {
|
||||||
|
timeStr = new Date().toLocaleTimeString();
|
||||||
|
}
|
||||||
|
function updateStockPrice() {
|
||||||
|
stockPriceDelta = Math.floor(Math.random() * 10000) / 100;
|
||||||
|
stockPriceDirection = Math.random() < 0.5;
|
||||||
|
}
|
||||||
|
function renderMarquee() {
|
||||||
|
updateTimestamp();
|
||||||
|
if (i % 10 === 0) updateStockPrice();
|
||||||
|
var stockPriceArrow = stockPriceDirection ? "▲" : "▼";
|
||||||
|
var stockPriceColor = stockPriceDirection ? "green" : "red";
|
||||||
|
marq.innerHTML = timeStr + " - FEM <span style=\"color:" + stockPriceColor + ";\">" + stockPriceArrow + " " + stockPriceDelta + "</span>";
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
setInterval(renderMarquee, 1000);
|
||||||
|
renderMarquee();
|
11
templates/Footer.cfm
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<div class="footer">
|
||||||
|
<p class="copyright">© 2019 FemboyFinancial Holdings Co., Ltd. (USA LLC)</p>
|
||||||
|
<div class="footerlinks">
|
||||||
|
<a href="/Terms.cfm">Terms of Use</a>
|
||||||
|
<a href="/Privacy.cfm">Privacy</a>
|
||||||
|
<a href="/Careers.cfm">Careers</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="/js/marquee.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
19
templates/Header.cfm
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title><cfoutput># pagename #</cfoutput> - FemboyFinancial Online Webportal</title>
|
||||||
|
<link rel="stylesheet" href="/css/main.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img height="69" width="640" src="/assets/Welcome.gif">
|
||||||
|
<marquee></marquee>
|
||||||
|
<div class="toplinks">
|
||||||
|
<a href="/Events.cfm">New Company Events</a>
|
||||||
|
<a href="/Products.cfm">Our Products</a>
|
||||||
|
<a href="/Help.cfm">Help</a>
|
||||||
|
<a href="/About.cfm">About Us</a>
|
||||||
|
<a href="/Contact.cfm">Contact Us</a>
|
||||||
|
<a href="/Sitemap.cfm">Site Map</a>
|
||||||
|
</div>
|
||||||
|
<hr>
|