Skip to content

Commit 2b68b99

Browse files
GiovanniGiovanni
authored andcommitted
Original files added
0 parents  commit 2b68b99

File tree

9 files changed

+227
-0
lines changed

9 files changed

+227
-0
lines changed

Original/Overview.html

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2+
"http://www.w3.org/TR/html4/strict.dtd">
3+
<html>
4+
<HEAD>
5+
6+
<SCRIPT type="text/javascript">
7+
8+
function popw(nom_de_la_page, nom_interne_de_la_fenetre)
9+
10+
{
11+
12+
window.open(nom_de_la_page, nom_interne_de_la_fenetre, config='height=200, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
13+
14+
}
15+
16+
function redir(uri)
17+
18+
{
19+
20+
window.open(uri)
21+
22+
}
23+
24+
</SCRIPT>
25+
26+
27+
<style>
28+
29+
table#nav1 {
30+
position:absolute;
31+
top:10px;
32+
left: 5px;
33+
width:200px
34+
}
35+
36+
table#nav2 {
37+
position: absolute;
38+
top:10px;
39+
left: 210px;
40+
}
41+
42+
table#nav2 td, table#nav1 td {
43+
width:100px;
44+
border:solid think black;
45+
background-color:#999;
46+
color:#fff;
47+
text-align:center;
48+
}
49+
50+
table#nav1 td {
51+
text-align:left;
52+
}
53+
54+
table#nav2 td.link {
55+
border-radius: 0.5em;
56+
border: solid 2px black;
57+
box-shadow: rgba(0,0,0,0.2) 0.5em 0.5em 0.3em;
58+
text-align:center;
59+
}
60+
61+
td a {
62+
color: #fff;
63+
}
64+
65+
a {
66+
text-decoration: none;
67+
}
68+
69+
div#content {
70+
position:absolute;
71+
top:20px;
72+
left: 210px;
73+
}
74+
75+
76+
</style>
77+
78+
</HEAD>
79+
<BODY BGCOLOR="#FFEF99" onload="window.open('fenetre_popup.html','Advertisement',config='height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no,fullscreen=yes')">
80+
81+
<table id="nav1">
82+
<tr><td><font size="+1"><img src="spacer.gif" width="5" />Menu</font></td></tr>
83+
<tr><td><img src="spacer.gif" height="30" /></td></tr>
84+
<tr><td><img src="spacer.gif" width="5" /><a href="javascript:popw('xchange.html','Exchange_Currencies');">Exchange Currencies</a></td></tr>
85+
<tr><td><img src="spacer.gif" width="5" /><a href="javascript:popw('buyg.html','Buy_Gold');">Buy Gold</a></td></tr>
86+
<tr><td><img src="spacer.gif" width="5" /><a href="http://www.nyse.com/" target="_blank">Wall Street Official Site</a></td></td></tr>
87+
</table>
88+
89+
<table id="nav2">
90+
<tr><td class="link"><a href="/">Home</a></td><td style="background-color:#FFEF99"><img src="spacer.gif" width="5" /></td><td class="link"><a href="rates.html">Our Rates</a></td></tr>
91+
</table>
92+
93+
<div id="content">
94+
<h1>Welcome to Gold and Currencies Trader Inc</h1>
95+
<p>We are trading, buying and selling currencies and gold pepites, with no commissions.</p>
96+
<p>Explore our services on the left menu, and get <a href="rates.html">our rates</a> from the top menu.</p>
97+
</div>
98+
99+
100+
</BODY>
101+
</HTML>

Original/buyg.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="iso-8859-1"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<title>Promo</title>
6+
</head>
7+
8+
<body style="background: #FFEF99">
9+
10+
<p style="font-weight:bold">Buying Gold</p>
11+
<p>Rates: 150$/Kg</p>
12+
<FORM action="end.html">
13+
<table>
14+
<tr><td style="font-weight:bold">Amount (in Kg):</td> <td><input type="text" size="6"></td></tr>
15+
16+
<tr><td><INPUT TYPE="BUTTON" VALUE="Cancel" ONCLICK="window.close()"></td>
17+
<td><INPUT TYPE="Submit" VALUE="Buy" ></td></tr>
18+
</table>
19+
</FORM>
20+
21+
</body>
22+
</html>

Original/end.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<title>site</title>
6+
7+
</head>
8+
9+
<body style="background: #FFEF99" >
10+
<h1>Operation Completed</h1>
11+
<p style="font-weight:bold">Thanks for buying at Gold and Currencies Trader Inc</p>
12+
<FORM>
13+
<INPUT TYPE="BUTTON" VALUE="Close" ONCLICK="window.close()">
14+
</FORM>
15+
</body>
16+
</html>

Original/fenetre_popup.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="iso-8859-1"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4+
<html xmlns="http://www.w3.org/1999/xhtml">
5+
<head>
6+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
7+
<title>site</title>
8+
<meta name="generator" content="Amaya, see http://www.w3.org/Amaya/" />
9+
</head>
10+
11+
<body style="background: #FFEF99">
12+
<p><a href="promo.html">Get 10% off your next subscription to any W3C training course</a></p>
13+
14+
<FORM>
15+
<INPUT TYPE="BUTTON" VALUE="Close" ONCLICK="window.close()">
16+
</FORM>
17+
</body>
18+
</html>

Original/menusm.jpg

16.8 KB
Loading

Original/promo.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="iso-8859-1"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<title>Promo</title>
6+
</head>
7+
8+
<body style="background: #FFEF99">
9+
<p>Provide the promotion code "W3C_Rules" during your next subscription</p>
10+
11+
12+
<FORM>
13+
<INPUT TYPE="BUTTON" VALUE="Close" ONCLICK="window.close()">
14+
</FORM>
15+
16+
</body>
17+
</html>

Original/rates.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<title>site</title>
6+
7+
</head>
8+
9+
<body style="background: #FFEF99" >
10+
<table border="1">
11+
<tr style="font-weight:bold"><td><img src="spacer.gif" height="5" width="5"/></td><td>Euro</td><td>US$</td><td>Yen</td></tr>
12+
<tr> <td style="font-weight:bold">Euro</td>
13+
<td><img src="spacer.gif" height="5" width="5"/></td>
14+
<td><table><tr><td>1Euro=1.50US$</td></tr><tr><td>1US$=0.66Euro</td></tr></table></td>
15+
<td><table><tr><td>1Euro=130Yens</td></tr><tr><td>1Yen=0.008Euro</td></tr></table></td>
16+
</tr>
17+
<tr> <td style="font-weight:bold">US$</td>
18+
19+
<td><table><tr><td>1US$=0.66Euro</td></tr><tr><td>1Euro=1.50US$</td></tr></table></td>
20+
<td><img src="spacer.gif" height="5" width="5"/></td>
21+
<td><table><tr><td>1US$=85Yens</td></tr><tr><td>1Yen=0.012US$</td></tr></table></td>
22+
</tr>
23+
<tr> <td style="font-weight:bold">Yen</td>
24+
25+
<td><table><tr><td>1Yen=0.008Euro</td></tr><tr><td>1Euro=130Yens</td></tr></table></td>
26+
<td><table><tr><td>1Yen=0.012US$</td></tr><tr><td>1US$=85Yens</td></tr></table></td>
27+
<td><img src="spacer.gif" height="5" width="5"/></td>
28+
</tr>
29+
</table>
30+
</body>
31+
</html>

Original/spacer.gif

42 Bytes
Loading

Original/xchange.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="iso-8859-1"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<title>Promo</title>
6+
</head>
7+
8+
<body style="background: #FFEF99">
9+
10+
11+
<FORM action="end.html">
12+
<table>
13+
<tr><td style="font-weight:bold">Amount:</td> <td><input type="text" size="6"></td></tr>
14+
<tr><td style="font-weight:bold">From:</td> <td><SELECT><option>US$</option><option>Euro</option><option>Yens</option></td></tr>
15+
<tr><td style="font-weight:bold">To:</td> <td><SELECT><option>US$</option><option>Euro</option><option>Yens</option></td></tr>
16+
<tr><td><INPUT TYPE="BUTTON" VALUE="Cancel" ONCLICK="window.close()"></td>
17+
<td><INPUT TYPE="Submit" VALUE="Proceed" ></td></tr>
18+
</table>
19+
</FORM>
20+
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)