I am a complete beginner when it comes to html, php, and javascript (I started just over a week ago).
Code: Select all
<HTML>
<HEAD>
<TITLE>Missions</TITLE>
<script type="text\javascript">
function createPopup() {
window.open('mission_1.html','mission1',"toolbar='no', scrollbars='no', width=200,height=200',statusbar='no',
menubar='no',resizable='no',left='100',top='150'");
return false;
}
</script>
</HEAD>
<BODY BACKGROUND="Stars.bmp">
<!-- changes the font, then prints Xanitia on the screen -->
<FONT COLOR=#ffffff>
<H1>
<P ALIGN="CENTER">Xanitia</P>
</H1>
<HR>
<DIV ID="Content" STYLE="POSSITION:absolute; border-color: 0; border-style: solid; border-top-width: border-top-width: 5px;
border-right-width: 5px; bored-bottom-width: 5px; border-left-width: 5px; WIDTH 50; HEIGHT 300; Z-INDEX:2; LEFT:0; TOP:127">
<H3>
<P ALIGN="CENTER"> IMPORTANT MISSIONS: </P>
</H3>
<a href="mission_1.html" target="mission_1.html" onclick="createPopup();">Mission 1</a>
</DIV>
</BODY>
</HTML>Code: Select all
<HTML>
<HEAD>
<TITLE>MISSION 1</TITLE>
</HEAD>
<BODY BACKGROUND="Stars.bmp">
<!-- changes the font, then prints Xanitia on the screen -->
<FONT COLOR=#ffffff>
<H1>
<P ALIGN="CENTER">Xanitia: <BR> Mission: <BR> 1</P>
</H1>
<HR>
<DIV ID="Content" STYLE="POSITION:absolute; border-color: 0; border-style: solid; border-top-width: border-top-width: 5px;
border-right-width: 5px; border-bottom-width: 5px; border-left-width: 5px; WIDTH 50; HEIGHT 300; Z-INDEX:2; LEFT:0; TOP:127">
<H3 ALIGN="CENTER"><EM><STRONG>Mission 1: <BR> Pesky Pirates</STRONG></EM><BR><BR></H3>
<P ALIGN="CENTER"> You Recieve a hail from a Lieutenant Striker, he requests that you dock aboard the Terran flagship "Ancient Blade". <BR>
As you walk along the corrider that leads from the docking bay, you run into a worried looking man; his uniform that of a lieutenent
"Great to meet you!" His piercing blue eyes stare into yours as he shakes your hand. "You have to meet the admiral, but first; as with
all new officers, you must get three recemendations. I will start you off. But I need you to do me a favour in return. Kill five
pirate shuttles and bring me their cores, I will give you a recommendation." </P>
<HR>
Requirements: x5 pirate shuttle cores.<BR>
Rewards: 1,000 credits, 200 experiance, and 1 letter of recommendation
<HR>
<a href="#" onclick="self.close();return false;">Close Window</a>
<a href="battle.php" target="missions">
Accept mission</a>
</DIV>
</BODY>
</HTML>