About html
HTML stands for hypertext markup language. HTML code is a
formatting code; it simply provides directions for how information is to be
displayed in a web browser.
*HTML tages are enclosed by < angle brackets >
*Every web page starts with < html > and ends with < /html >
*All heading info is within the < head > tag.
* The < title > information is within the < head >. This is a document title, not a page title. It shows in the browser tag.
*All information you want seen goes in those body tags
*Size of font controlled by < h1/h2/h3... > before and after what you want enlarged
*Makes a space ( &=ampersand [ampersand amp] n b s p ;)
*Make brackets on the web (ampersand lt; is right. ampersand gt; is left)
* < hr > makes a nice line in the web page!
* < br   /> makes a break in the line (like when you press enter)
* < !--comments-- > wont show on page but nice place to put reminders to yourself.
* < a href= "LINK GOES HERE" > WHAT YOU WANT YOUR LINK TO LOOK LIKE < /a >
http://www.ascii.cl/htmlcodes.htm
< html >
< head >
< title > Title goes between here!!! < /title >
< /head >
< body >
All page contents go here!!!!
< /body >
< /html >
Every webpage starts with < html >
and ends with < html >
All heading information is within the < head >
Withing the < head > tag, put the <title > tag. The title will show up on the browser tab.
Whatever goes into the title will appear in the blue at the top !