Just a Short, Ok maybe long guide to Basic HTML

Ok once you find a host bla bla bla you need to create a page.
Should do it index.htm or index.html
Your choice
Then you want to put the following
<html>
<head>
<title>Insert title of website here </title>
</head>
<body>
Then put basic text <b>The text here should be bold</b>
</body>
</html>

That's really basic!

Ok back we go!

<html>
<head>
<title>Erm title here</title>
<p> This is paragraph 1 </p>
<p> This should be pargraph 2 </p>
</head>
<body>
Basic text <b>This should be bold</b>
</body>
</html>
Ok i added paragraph tags inside the body
Very basic still.....