HTML 01 Introduction
What is the attribute?
It gives the element extra information. Ex. It tells where the hyperlink should link to. <a HREF="SCHEDULE.HTML">schedule </a>
What does <!doctype> do?
It helps the web browser to display a web page correctly.
What do markup tags tell the web browser?
It tells what to display on the web page.
What are HTML elements defined as?
Markup tags or simply tags
Are HTML tags case sensitive?
No, <body> is the same as <BODY>
<html>
Tells that web browser "I am HTML code"- Root element which means everything else is inside of it.
What is HTML made up of?
Elements
What does not HTML do?
It is not a programming language like Java or scripting language like JavaScript.
What is in between the start and end tag?
The content.
What is the second tag called?
The end or closing tag.
What is the first tag called?
The start or opening tag.
What do/are HTML documents?
They are called web pages, they describe web pages(what to display), and it contains HTML tags and plain text.
What follows a set of rules that are constantly changing and being updated?
Web browsers.
What ensures that ALL tags are lower case?
XHTML rules.
<head>
always first elements inside <html>; defines certain items BEFORE the web page loads
<title>
defines title that appears on web tab
what is the purpose of HTML?
language for describing web pages. It is a markup language.
HTML tags come in pairs. what do they look like?
<html> </html>
<body>
EVERYTHING that physically appears on web page must appear inside body element
What is the element?
Everything from the start tag to the end tag.
T/F: <!doctype> comes after the <html> tag
False, it appears before
What are surrounded by angle brackets<>?
HTML tags
What does HTML stand for?
Hyper Text Markup Language
What is the required HTML code for a basic web page?
<!doctype html> <html> <head> <title>TITLE</title> </head> <body> </body> </html>