- What is HTML?
Answer: Hyper-Text Mark-up Language… HTML is not a programming language; it is a markup language that defines the structure of your content. HTML consists of a series of elements, and attributes.
- What is HTML used for?
Answer: To enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image, or hyperlink to somewhere else… It can italicize words, make the font bigger or smaller, and so on.
- Why are we learning HTML?
Answer: To learn how website’s are built…their anatomy.
- What is an HTML tag?
Answer: angle brackets are used to open and close elements like paragraphs
, , and .
- What is the structure of an HTML tag?
Answer:
- What is an attribute?
Answer: Attributes contain extra information about the element that you don’t want to appear in the actual content. The attribute consists of a name and it’s value.
And, should always have the following:
a. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
b. The attribute name followed by an equal sign.
c. The attribute value wrapped by opening and closing quotation marks.
- What is the anatomy of an HTML document?
Answer: As an example website page: , , , , My test page, ,
, , . Are the basic elements of an HTML document.