this is a website run by p1 that is about html, css and java script! ;]
to make a paragraph use the <p>
tag like I'm doing here!
you will need a closeing tag like this: </your tag here>
(tags don't have spaces)
if you want to bold text put this in you html doc: <b>your text here</b>
or <strong>your text here</strong>
if you want to italic text put this in you html doc: <i>your text here</i>
if you want to underline text put this in you html doc: <u>your text here</u>
this is good but to really make a html doc you need this:
<!DOCTYPE HTML>
<head>
<!--unseen code (this is a comment btw)-->
</head>
<body>
<!--seen code-->
</body>
other tags:
if you want to strikethrough text put this in you html doc: <s>your text here</s>
use the anchor(a) tag for links like this: <a href="your url here(no spaces!)">your text here</a>
well if you want to know more, I can not stress enough how much you should go to w3schools, and just google it!