Code Flashcards Preview

HTML > Code > Flashcards

Flashcards in Code Deck (19)
Loading flashcards...
1
Q
A

Provides metadata ( specify page description, keywords, author of the document, last modified) about the HTML document.

2
Q
A

The link/type of your document.

3
Q
A

Defines a client-side script

4
Q
A

opens and closes the HTML document

5
Q
A

Where the tab title goes. Does not show up on website itself.

6
Q
A

This is where heading tags go

7
Q
A

This is where the bulk of the page goes (content).

8
Q

<div></div>

A

formats a block of text

9
Q

<div></div>

A

define the elements that appear several times on the page.

10
Q

<div></div>

A

used to define main elements of the page (header, main content, sidebar)

11
Q

<p></p>

A

opens and closes a paragraph

12
Q

<h1></h1>

(h1-h6)

A

Opens and closes a header. H1 is large text, H6 is small text.

13
Q

<ul></ul>

A

Opens and closes an unordered (bulleted) list

14
Q

<ol></ol>

A

Opens and closes an ordered (numberedlist

15
Q

<li></li>

A

List item tag. These go in between <ol> or <ul> tags.

16
Q

<img></img>

A

used to define an image

17
Q

<a></a>

A

a placeholder for a hyperlink

18
Q

<a></a>

A

a hyperlink

19
Q
A

used to pass data to a server