• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Website

dydocan

dydocan
Joined
Jul 2, 2010
Messages
95
Reaction score
0
I have 2 websites linked to 1 website like this>>

<html>
<body>

<body background="main/bam.png" />

</body>
</html>

<body>
<div style="padding-left: 180px;" style="padding-top: 600px;"/>
<a href="http://12345"/>
<img src="main/tang.png" alt="HighRated"/>
</a>
</div>
</div>
<div style="padding-left: 1000px;" style="padding-top: 700px;"/>
<a href="http://12345"/>
<img src="main/tangski.png" alt="LowRated"/>
</a>
</div>
</div>
</body>
</html>


but this script doesn't work

I need someone to script a new for me in PHP or HTML it doesn't matter for me it should just work.

And I need the script to work for both firefox and Internet Explorer
 
HTML:
<html>
<body style="background-image:url('main/bam.png');" />

	<div style="padding-left: 180px;" style="padding-top: 600px;"/>
	<a href="http://12345"/>
	<img src="main/tang.png" alt="HighRated"/> 
	</a>
</div>
	<div style="padding-left: 1000px;" style="padding-top: 700px;"/>
	<a href="http://12345"/>
	<img src="main/tangski.png" alt="LowRated"/>
	</a>
</div>
</body>
</html>
 
If its a php file you can do like this

PHP:
<!-- Html Content -->
<html>
<body style="background-image:url('main/bam.png');" />

	<div style="padding-left: 180px;" style="padding-top: 600px;"/>
	<a href="http://12345"/>
	<img src="main/tang.png" alt="HighRated"/> 
	</a>
</div>
	<div style="padding-left: 1000px;" style="padding-top: 700px;"/>
	<a href="http://12345"/>
	<img src="main/tangski.png" alt="LowRated"/>
	</a>
</div>
</body>
</html>
<!-- End of Html Content -->

<?PHP
/* Here comes the PHP part */
?>

and save as index.php
 
Back
Top