Minimal Help

Status
Not open for further replies.

blaindugan

New Member
Messages
168
Reaction score
0
Points
0
could someone write a extremely basic html script for me that has the advanced text code and a message saying Site Under Construction, i need this so that i dont get banned while im trying to figure out html and while im reading tutorials and all that. thanks if anyone has the time
 

Death

New Member
Messages
334
Reaction score
0
Points
0
Well,
<html>
<title>Site Under Construction!</title>
<body>
<center><font color=#ff0000><h1>Site Under Construction</h1></font></center>
<body bgcolor="#000000">
</body>
</html>

The above code will give you a black bg color and in ther center it will be written Site Under Construction!
 

blaindugan

New Member
Messages
168
Reaction score
0
Points
0
where would i insert the required text code, and i forgot to ask..... were do i upload the file so that i dont have to go through that parent viewer stuff. i thought i saw something saying i had to upload it to the www directory. thanks
 
Last edited:

Death

New Member
Messages
334
Reaction score
0
Points
0
No...

You Just edit the index.html and paste the above code in it!
 

Alejandro

Staff
Staff member
Community Support
Messages
9,436
Reaction score
1
Points
38
Code:
<html>
<head>
<title>Site Under Construction</title>
</head>
<body bgcolor="000000" text="FFFFFF">
<center>
<h1>This Site is Under Construction</h1>
<h2>Please come back later</h2>
<br><br>
<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script> 
<script language='JavaScript' type='text/javascript'> 
<!-- if (!document.phpAds_used) document.phpAds_used = ','; phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11); document.write ("<" + "script language='JavaScript' type='text/javascript' src='"); document.write ("http://x10hosting.com/advert/adjs.php?n=" + phpAds_random); document.write ("&amp;what=zone:3&amp;target=_blank"); document.write ("&amp;exclude=" + document.phpAds_used); if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer)); document.write ("'><" + "/script>"); //--> 
</script>
<noscript>
<a href='http://x10hosting.com/advert/adclick.php?n=a915c788' target='_blank'>
<img src='http://x10hosting.com/advert/adview.php?what=zone:3&amp;n=a915c788' border='0' alt=''>
</a></noscript>
</center>
</body>
</html>

Here, use this. Save it as 'index.htm' and upload it to the 'www' directory.
 
Last edited:
Status
Not open for further replies.
Top