Introduction to HTML Flashcards
What is HTMl?
also known as, Hyper Text Markup Language. It describes the content and format of web pages using tags. It is a set of rules (language) for describing the
format and structure (markup) of text on computers
that allow you to go to other places of information
or websites (hypertext).
Who is TIM BERNERS LEE?
He developed the HTML
An HTML element is composed
of Opening Tag, content and __________________.
Closing tag
A tag name is surrounded by ______________.
Angle Bracket
An HTML Structure is composed of Doctype, HTML, Head and ________.
Body
<!DOCTYPE html> is a declaration that defines that the document is an HTML, which is encoded at the _____________ of the document.
First Line
It represents semantics or meaning.
HTML
It is the standard programming language for describing the contents and appearance of Web pages.
HTML5
It is a declaration that defines that the document is an HTML. All HTML documents must have this at the very first line of the document.
<!DOCTYPE html>
__________ element is the root element of an HTML page.
<html>
</html>
__________ element contains the meta information about the HTML page.
<head>
</head>
________ element defines the document’s body, and the container for the visible contents of the HTML document.
<body>
</body>