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>
Text between _______ tag describes the first level heading of the webpage
<h1>
</h1>
Text between ____ tag describes the paragraph of the webpage.
<p>
</p>
known as the father of HTML.
Tim Berners-Lee
The first available description of HTML was a document called “HTML Tags” proposed by ____ in late _____-.
Tim & 1991
the barebones version of HTML language, and it was released in1991.
HTML 1.0`
This was the next version which was released in 1995, and it was standard language version for website design.
HTML 2.0
This version was capable of creating tables and providing support for extra options for form elements. It can also support a web page with complex mathematical equations. It became an official standard for any browser till January 1997. Today it is practically supported by most of the browsers.
HTML 3.2
released on December 1999, and it is a very stable version of HTML language. This version is the current official standard, and it provides added support for stylesheets (CSS) and scripting ability for various multimedia elements.
HTML 4.01
the newest version of HyperText Markup language. The first draft of this version was announced in January 2008.
HTML5
What are the features of HTMl?
- easy and simple language.
- easy to make an effective presentation
- It is a markup language
- It facilitates programmers to add a link on the web pages
- It is platform-independent
- It facilitates the programmer to add Graphics, Videos, and Sound to the web pages