<!DOCTYPE html>
<head>
<title>Coming soon</title>
<style type="text/css">
html{height:100%;margin:0 0 1px;font-size:100%;}body{background-color:#000;font:normal 11px tahoma, sans-serif;margin:0;padding:0;}#container{width:600px;margin:0 auto;}#container #greybox{background-color:grey;padding:10px;border-radius:6px;color:#FFF;}
</style>
<body>
<div id="container">
<div id="greybox">
<?php echo 'Coming soon'; ?>
</div>
</div>
</body>
</html>
Why the hell would you use server-side code when you can just write "coming soon"?Code:<!DOCTYPE html> <head> <title>Coming soon</title> <style type="text/css"> html{height:100%;margin:0 0 1px;font-size:100%;}body{background-color:#000;font:normal 11px tahoma, sans-serif;margin:0;padding:0;}#container{width:600px;margin:0 auto;}#container #greybox{background-color:grey;padding:10px;border-radius:6px;color:#FFF;} </style> <body> <div id="container"> <div id="greybox"> <?php echo 'Coming soon'; ?> </div> </div> </body> </html>
Try that, just coded it, not sure what it looks like. ;p
He requested it to be in PHP, as it said in the thread title...?Why the hell would you use server-side code when you can just write "coming soon"?
Coulda still simplified the problem ;p.He requested it to be in PHP, as it said in the thread title...?
Looking back at the source, you're going to need to add the </head> tag and maybe add some margin onto the container, haha. ;p
Don't use a chainsaw to do what can be done with a knife.He requested it to be in PHP, as it said in the thread title...?
Looking back at the source, you're going to need to add the </head> tag and maybe add some margin onto the container, haha. ;p
Because he's a lazy fucker.Why not code it yourself donkey.