HTML Flashcards

1
Q

are defined with h1 to h6 tags

A

HTML Headings

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

how to define HTML Headings

A

h1 to h6

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

are defined with p tag

A

HTML Paragraph

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

How to define HTML Paragraph

A

<p> tag
</p>

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

are defined with a tag

A

HTML links

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

How to define HTML links

A

<a> tag</a>

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

are defined with <img></img> tag

A

HTML image

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

How to define HTML image

A

<img></img> tag

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

HTML tags and attributes create the __

A

HTML elements

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

are similar to keywords

A

HTML tags

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

are used to customize an element’s behavior

A

HTML Attributes

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

are building blocks of a webpage

A

HTML Elements

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

3 Types of HTML Elements

A

Simple Element
Nested Element
Empty Element

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

are used to provide additional information about the HTML elements

A

HTML Attributes

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

is used to define characteristics of an HTML element

A

attribute

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

2 Types of HTML Attributes

A

HTML Local Attributes
HTML Global Attributes

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

Different types of Global Attributes

A

id
class
style
dir
lang

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

Generic attributes

A

align
background-color
id
class
width
height
title

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

appear on the screen as if they have line break before and after them

A

Block level elements

20
Q

appear on the screen as if they have line break before and after them

A

Block level elements

21
Q

can appear within the same line and do not start a new line on their own

A

Inline Elements

22
Q

is a tool that defines how web documents look on screens or print

A

Cascading Stylesheet

23
Q

is a tool that defines how web documents look on screens or print

A

Cascading Stylesheet

24
Q

Types of CSS

A

External CSS
Internal CSS
Inline CSS

25
Q

define stylesheet rules in a separate .css file

A

External CSS

26
Q

Define stylesheet rules in the header section of the HTML document

A

Internal CSS

27
Q

Define stylesheet rules directly along with the HTML elements

A

Inline CSS

28
Q

is the best way of representating textual context on the website

A

HTML Formatting

29
Q

These tags are used to give the visual appearance to the textual content

A

Physical tag

30
Q

These tags are used to give the logical & semantic meaning to the textual content

A

Logical Tag

31
Q

allow you to include and format quoted text within web content

A

Quotation

32
Q

HTML Quotation tags list

A

<q></q>

<blockquote>
<cite>
<address>
<bdo>
<abbr>
</abbr></bdo></address></cite></blockquote>

33
Q

is like a note for yourself and others

A

Comments

34
Q

are a way of specifying the apperance of web elements. They are also used to evoke emotions and highlight important contents

A

HTML Color

35
Q

are a way of specifying the apperance of web elements. They are also used to evoke emotions and highlight important contents

A

HTML Color

36
Q

HTML Color coding methods

A

Color names
Hex color codes
RGB color values

37
Q

provides a visual content for web pages, enhancing user experience and conveying information

A

HTML images

38
Q

Tim Berners-Lee invented www

A

1989

39
Q

Tim Berners-Lee invented HTML

A

1991

40
Q

W3C Recommendation XHTML 1.0

A

2000

41
Q

WHATWG HTML 5 First Public draft

A

2008

42
Q

this tag defines the document type and HTML version

A

!DOCTYPE

43
Q

this tag encloses the complete HTML document

A

<html>
</html>

44
Q

this tag represents the document’s header

A

<head>
</head>

45
Q

tag to mention the document title

A

<title>
</title>

46
Q

this tag represents the document’s body

A

<body>
</body>