HTML Basics Flashcards

Learn the basics of HTML

1
Q

HTML Stands for

A

HyperText Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

HTML One Liner

A

Hypertext and Markup language. Hypertext defines the link between web pages. A markup language is used to define the text document within the tag which defines the structure of web pages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

HTML founder

A

Tim Berners-Lee in 1991

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

HTML founder

A

Tim Berners-Lee in 1991. The first-ever version of HTML was HTML 1.0, but the first standard version was HTML 2.0, published in 1995.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

HTML structure

A

<DOCTYPE! html>

<html>
<head>
<body>
</body></head></html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

<DOCTYPE! html>

A

Document type declaration is an instruction that tells the web browser about the markup language in which the current page is written

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

<html>
</html>

A

Define the root element of HTML document. This tag tells the browser that it is an HTML document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

<head>
</head>

A

Define the head portion of the HTML document that contains information related to the document. Elements within the head tag are not visible on the front-end of a webpage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

<body>
</body>

A

Enclose all the visible content of a webpage. In other words, the body content is what the browser will show on the front end.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

<style>

</style>
A

Allows us to insert styling into our webpages and make them appealing to look at with the help of CSS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

<title>
</title>

A

The title is what is displayed on the top of your browser when you visit a website and contains the title of the webpage that you are viewing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

<base></base>

A

It specifies the base URL for all relative URL’s in a document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

<noscript>
</noscript>

A

Defines a section of HTML that is inserted when the scripting has been turned off in the users browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
<script>

</script>
A

This tag is used to add functionality in the website with the help of JavaScript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

<meta></meta>

A

This tag encloses the meta data of the website that must be loaded every time the website is visited. For eg:- the metadata charset allows you to use the standard UTF-8 encoding in your website. This in turn allows the users to view your webpage in the language of their choice. It is a self closing tag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

<link></link>

A

The ‘link’ tag is used to tie together HTML, CSS, and JavaScript. It is self closing

16
Q

Advantages and disadvantages

A

Advantages:

HTML is used to build websites.
It is supported by all browsers.
It can be integrated with other languages like CSS, JavaScript, etc.

Disadvantages:

HTML can only create static web pages. For dynamic web pages, other languages have to be used.
A large amount of code has to be written to create a simple web page.
The security feature is not good.

17
Q

Who works on HTML Development

A

Web Hypertext Application Technology Working Group (WHATWG)