how do you make a html?

  • Thread starter Thread starter DAVID B
  • Start date Start date
D

DAVID B

Guest
i learnt this in school but i forgot. how do you make a piece of text into a html.
 
You don't make HTML, you write it.

To have a piece of text in html, you merely type it into the HTML file, it isn't even necessary to insert tags for such a basic task, I'm assuming you have placed in the basic tags thus far (Body, html, etc.). If you wish to format the text, then you will need to add tags, opening and closing either side of the text, you can find these and much more information about HTML on the links below.
 
it is very easy
you can use some software free stuff on the web or you can just open word and save files as HTML you can find that option
Otherwise if you want to do it from scratch you can use notepad or BBEdit or any like these to edit yourself HTML code
you will have some tags <>, and text bellow and between them.
like this:

<HTML>
<HEAD>
<TITLE> THE TITLE FOR THIS </TITLE>
</HEAD>
<BODY>..........


<P> HERE IT WILL BE A PARAGRAPH FOR EXAMPLE
</BODY>
</HTML>

write this and just save the page as namefile.html
be aware in notepad to put all files as saving option file to avoid saving as text file.

good luck,
claude
 
Back
Top