2DWorlds Forums
I'm working on a website layout for friend - Printable Version

+- 2DWorlds Forums (http://2dworlds.buildism.net/forum)
+-- Forum: 2DWorlds (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=4)
+--- Forum: The Community (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=27)
+--- Thread: I'm working on a website layout for friend (/showthread.php?tid=8613)



I'm working on a website layout for friend - Good - 11-20-2011

Code:
<html>
<head>
<title>This is the title </title>
</head>
<body bgcolor="#9999999">
<center><img scr="image.png"><br><br>
<font size="+1"><a href="buildism.net">Buildism |<a href="roblox.com">ROBLOX |<a href="google.com"> Google |<a href="weeworld.com"> Weeworld.</font>
<h2><font face="fontnamehere"><b><u>Welcome to my website</b></u></font>
<br>
<br>
<font size="+3">This is my web site</font>
</body>
</html>
I'm still working on it and the most of the things are place holders are just place holders.
FYI I only started html on friday



RE: I'm working on a website layout for friend - Paradox - 11-20-2011

At a glance, that code looks fine, except you aren't using divs and you nav bar is rather amateurish. Also, don't forget to use CSS. I hosted it to see what it looked like.

http://cub3studios.x10.mx/asdf/asdf.html
And here is my index page, if you want an example of HTML-

Code:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
<title>Studios</title>
</head>
<body>
<div id="wrapper">
<div id="news">
<p align="center">
News
</p>
</div>
<div id="logo">
<center>
<iframe id="box" height="500" width="695" src="logomain.php"></iframe>
</center>
</div>
</br>
<ul id="nav">
    <li><a href="http://cub3studios.x10.mx">Home</a></li>
    <li><a href="videos.html">Videos</a></li>
    <li><a href="flash.html">Flash</a></li>
    <li><a href="about.html">About</a></li>
</ul>
</div>
</body>
</html>



RE: I'm working on a website layout for friend - Good - 11-20-2011

Yea I know some things i'm going to go work on it some more.