2. Working with HTML Content Flashcards

1
Q

Standard markup language used for creating web pages and structuring content on world wide web

Backbone of web development and acts as fundamental building block for creating web based documents.

Define structure and layout of a web page by using a set of tags or elements.

A

Hypertext Markup Language
HTML

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

Represent different types of content such as headings, paragraphs, images, links, forms and tables

enclosed in (<>) angle brackets and are composed of an opening tag, content and closing tag

A

HTML Tags

”/”

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

Interpreted by web browsers that render the structured content and present it to end users

enables browsers to understand hierarchy, relationships and presentation of elements on webpage ensuing that everything displays as intended

A

HTML Documents.

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

Placed at the very beginning of the HTML document to specify the HTML version being used and ensures that the browser interprets the page correctly

A

(<!DOCTYPE>)

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

Root element of an HTML document and it encloses the entire content of the page and servs as a container for all other HTML elementments

A

HTML Tag

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

Contains metadata and other non-visible information about the web page but not directly visible to users who load the page.

title
character encoding
linked stylesheets
JavaScript files

A

head tag

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

uses codes such as UTF-8 is the method used to represent and display characters, symbols, and special characters within an HTML documents

A

Characterset tag

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

represents the visible content of the web page and contains all the elements that will be displayed on the screen such as text, images, headings, paragraphs and links

A

body tag

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

tags like h1, h2 and so on are used to define headings or titles of sections within the body of the page

A

Heading Tags

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

Main Heading

A

h1

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

Subheading

A

h2

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

Subheadings

A

h3

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

Define blocks of text or content within the body of the page and create separate paragraphs and are commonly used for structuring textual content

A

Paragraph tags - -

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

Introduced a set of semantic tags that provide more meaningful and descriptive structure to the content

header
nav
section
article
aside
footer

A

HTML5

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

Help with organization and make it easier for us to understand the purpose of different sections of the page

A

Semantic Tags

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

Tags tgat begin with an exclamation mark are used for”______” and are not visible to users and have no impact on the way browsers read the page.

A

Comments

17
Q

Nothing but a plain text document that by convention has the .html filename extension.

A

HTML page

18
Q

Don’t forget to properly open and close

A

tags.

19
Q

Tells the browser that this is a paragraph

A

<p>

paragraph tag
</p>

20
Q

unordered list

A

<ul>
<li> 1</>
<li> 2</>
<li> 3</>
</ul>
</li></li></li></ul>

21
Q

container for list

A

list tag

22
Q

anchors have these attributes that control HOW links will open when a user clickes them

A

target

23
Q

default behavior for the target attibute that specifies that the linked content should open in the same window or tab where the link was clicked

A

_self

24
Q

Linked content will open in a new browser tab or window depending o the user’s browser settings

A

_blank

25
Q

value used when the current page is within a frame or iframe and specifies the linked content should open in the parent frame that contains the current page.

A

_parent

26
Q

an html element used to embed another html document within the current document

displays content from another source or website withing webpage and is displayed with rectangular frame or window and is controlled/styled using CSS.

A

iframe

inline frame

27
Q

used when the current page is within a nested frame structure and specifies that the linked content should break out of all frames and open in the full window or tab - replacing all frames.

A

_top

28
Q

Will prompt users to enter whatever information your asking for

A

HTML Forms

29
Q

Any text thats been entered into the form will be posted or sent to submit .php

A

POST

30
Q

attribute is there to print the word “Submit” on the button

A

Submit

31
Q

used to control how external images are displayed

A

<img></img>

32
Q

used to control how video images are displayed

A

<video>
</video>

33
Q

defines links to external web resources

A

<href>
</href>