How do I put an html layout on my website?

PIe Pie

New member
I am trying to find a different layout that the ones offered. I am using 1&1 hosting and need to know how to insert a layout with html? Steps would be nice :) Thanks!!!
 
<html>
<head><title> The head </title></head>
<body style="background-color:gold">
<h1 style="front-family:verdana;color:purple">HEADLINE</h1>
<p style="front-family:verdana;color:purple"> SOME COLORED TEXT</p>
<hr / > A NEW LINE
<img src="mainpage1.jpg"width="159" height="142"> THIS IS A IMAGE
<p><a href="IF YOU WANT TO MAKE A LINK TO ANOTHER PROJECT ENTER THE NAME*"></a></p>
<p><b>This text is bold</b></p> BOLD
<p><big>This text is big</big></p>
<p><i>This text is italic</i></p>
<p><code>This is computer output</code></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>
</html>

*THE HTML PROJECT MUST BE IN THE SAME FOLDER AS THE MAINPAGE


-----------------------------------------------------------------------------------------------------
If you did not know this is a total basic of html, layouts on the text and the head and other things
<body style="background-color:gold"> is the background
but member the
<html>
<body style="background-color:anycolor>
and then
</body>
</html>
and to end it
if this was not what you where looking for then im sorry
 
<html>
<head><title> The head </title></head>
<body style="background-color:gold">
<h1 style="front-family:verdana;color:purple">HEADLINE</h1>
<p style="front-family:verdana;color:purple"> SOME COLORED TEXT</p>
<hr / > A NEW LINE
<img src="mainpage1.jpg"width="159" height="142"> THIS IS A IMAGE
<p><a href="IF YOU WANT TO MAKE A LINK TO ANOTHER PROJECT ENTER THE NAME*"></a></p>
<p><b>This text is bold</b></p> BOLD
<p><big>This text is big</big></p>
<p><i>This text is italic</i></p>
<p><code>This is computer output</code></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>
</html>

*THE HTML PROJECT MUST BE IN THE SAME FOLDER AS THE MAINPAGE


-----------------------------------------------------------------------------------------------------
If you did not know this is a total basic of html, layouts on the text and the head and other things
<body style="background-color:gold"> is the background
but member the
<html>
<body style="background-color:anycolor>
and then
</body>
</html>
and to end it
if this was not what you where looking for then im sorry
 
Back
Top