how do you use HTML code?

  • Thread starter Thread starter tombore-z
  • Start date Start date
T

tombore-z

Guest
i know u can make a page on note pad using HTML code but how do i do that? i forgot how. and how do u see it as a web page?
 
html runs off of pair tags. like <body> </body> that would be the middle of the webpage some html i know is:
<p> </p> (paragraph)
<b> </b> Bold
<i> </i> Italics
<href> specifies the url of the page to which the link connects.
<h1 to <h6> </h1 to /h6>
<title> </title>
you type them in wordpad or notepad then save them with the .html extension. then open them in you brower. i have a master visually web page book of you want a copy of the page with the html send me a line at [email protected]
Thanks!
 
You would use these tags to create a web page
<html>
<head>
<title>Put whatever title you want for the page</title>
</head>
<body>
Here you will be adding anything you want on the page like paragraphs, text, etc...
</body>
</html>

Don't forget to close your tags :)
Then just save it as a .html file
And to see it as a web page, just double click on the file.

Hope this helped
 
after putting the codes on notepad,
click "save as..." and for example, the filename is 'myhtml"
just type this as it`s name : myhtml.html and there it is.
 
Back
Top