HTML Flashcards
HTML stands for what?
HyperText Markup Language.
HTML is used to create?
web pages and web applications.
True or False
- HTML is widely used language on the web.
True
True or False
-We can create a static website by HTML only.
True
This is the text within text, a text has a link within it.
Hyper Text
A computer language that is used to apply layout and formatting conventions to a text document.
Markup Language
A document which is commonly written in HTML and translated by a web browser.
Web page
identified by entering an URL.
Web Page
can be of the static or dynamic type.
Web Page
What do you call of this <!DOCTYPE>?
Document type
It defines the document type or it instruct the browser about the version of HTML.
<!DOCTYPE>
This tag informs the browser that it is an HTML document. Text between html tag describes the web document. It is a container for all other elements of HTML except <!DOCTYPE>
<html>
</html>
It should be the first element inside the <html> element, which contains the metadata(information about the document). It must be closed before the body tag opens.
<head>
</head>
As its name suggested, it is used to add title of that HTML page which appears at the top of the browser window. It must be placed inside the head tag and should close immediately.
<title>
</title>
Text between body tag describes the body content of the page that is visible to the end user. This tag contains the main content of the HTML document.
<body>
</body>