I Hate CBT's

View Original

2.2.6 Your First Html Page

Question: <!DOCTYPE html> tag

Answer: tells the browser which version of HTML the page is written in

Question: <html> tag

Answer: the html tag says everything between these two tags is our html page

Question: <head> tag

Answer: the <head> tag contains important information about the document

Question: <title> tag

Answer: the <title> tag defines the title of the web page. This is displayed in the top of the web browser

Question: <body> tag

Answer: the <body> tag is where the actual content of the document goes (text, images, etc). This is where most HTML tags will go.