HTML- hyper text markup language
-specifies format or tags, not really programming. It gives directions as to how information should be displayed i a web browser.
-most tags are put inside <angle brackets>
Every webpage starts with
<html>and ends with </html>
All heading information is within the <head> tag
Within the <head> tag, put the <title> tag. The title will show up on the browser tab, not on the page.
Within the <body> tag is all of the content that is on the page.
You can change the color of the background by writing <body bgcolor = "#ooooff"> for the body tag **chose the code for the wanted color.