HTML Basics: Elements, Structure, and Forms

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/90

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

91 Terms

1
New cards

HTML

The set of markup symbols or codes placed in a file intended for display on a Web browser page.

2
New cards

HTML5

Newest version of HTML/XHTML supported by modern browsers, intended to be backwards compatible, adds new elements and functionality such as editing form data, native video and audio.

<p>Newest version of HTML/XHTML supported by modern browsers, intended to be backwards compatible, adds new elements and functionality such as editing form data, native video and audio.</p>
3
New cards

Document Type Definition (DTD)

Doctype statement that identifies the version of HTML contained in your document, placed at the top of a web page document.

4
New cards

XHTML 1.0 Transitional DTD

5
New cards

HTML5 DTD

6
New cards

Head Section

Contains information that describes the web page document.

7
New cards

Body Section

Contains text and elements that display in the web page document.

8
New cards

Title Element

Defines the title of the web page, displayed in the browser's title bar or tab.

9
New cards

Meta Element

Provides metadata about the HTML document, such as character set and viewport settings.

<p>Provides metadata about the HTML document, such as character set and viewport settings.</p>
10
New cards

Heading Element

Defines headings for sections of content, with levels ranging from

to

.

<p>Defines headings for sections of content, with levels ranging from <h1> to </h1><h6>.</h6></p>
11
New cards

Paragraph Element

Groups sentences and sections of text together, configured with empty space above and below.

12
New cards

Line Break Element

A stand-alone or void tag that causes the next element or text to display on a new line.

13
New cards

Blockquote Element

Indents a block of text for special emphasis, configured with empty space above and below.

<p>Indents a block of text for special emphasis, configured with empty space above and below.</p>
14
New cards

Div Element

Configures a structural block area or 'division' on a web page with empty space above and below.

15
New cards

header Element

Contains the web page document's headings

16
New cards

nav Element

Contains web page document's main navigation

17
New cards

main Element

Contains the web page document's main content

18
New cards

footer Element

Contains the web page document's footer

19
New cards

Text that has no extra importance but is styled in bold font by usage and convention

20
New cards

Causes text to be emphasized in relation to other text; usually displayed in italics

21
New cards

Text that has no extra importance but is styled in italics by usage and convention

22
New cards

Text that is highlighted in order to be easily referenced (HTML5 only)

23
New cards

Legal disclaimers and notices ("fine print") displayed in small font-size

24
New cards

Strong importance; causes text to stand out from surrounding text; usually displayed in bold

25
New cards

Displays a subscript as small text below the baseline

26
New cards

Displays a superscript as small text above the baseline

27
New cards

Unordered List

Displays a bullet, or list marker, before each entry in the list.

28
New cards

    Contains the unordered list

    29
    New cards

  • Contains an item in the list

    30
    New cards

    Ordered List

    Displays a numbering or lettering system to itemize the information contained in the list

    31
    New cards

      Contains the ordered list

      32
      New cards

      type attribute

      Determines numbering scheme of list, default is numerals

      33
      New cards

      Description List

      Useful to display a list of terms and descriptions or a list of FAQ and answers

      <p>Useful to display a list of terms and descriptions or a list of FAQ and answers</p>
      34
      New cards

      Contains the description list

      35
      New cards

      Contains a term/phrase/sentence. Configures empty space above and below the text

      36
      New cards

      Contains a description of the term/phrase/sentence

      37
      New cards

      Special Characters

      Display special characters such as quotes, copyright symbol, etc.

      38
      New cards

      Anchor Element

      Specifies a hyperlink reference (href) to a file

      39
      New cards

      href Attribute

      Indicates the file name or URL

      40
      New cards

      Absolute link

      Link to a different website

      41
      New cards

      Relative link

      Link to pages on your own site

      42
      New cards

      E-Mail Hyperlink

      Automatically launch the default mail program configured for the browser

      43
      New cards

      Writing Valid HTML

      Check your code for syntax errors

      44
      New cards

      W3C HTML Validation Tool

      A tool used to validate HTML code for consistency in browser display

      <p>A tool used to validate HTML code for consistency in browser display</p>
      45
      New cards

      BODY Attributes

      Attributes that set background image, color, text color, and link colors in the body of an HTML document

      46
      New cards

      Sets background image

      47
      New cards

      Sets background color, using name or hex value

      48
      New cards

      Sets text color, using name or hex value

      49
      New cards

      Sets color of links, using name or hex value

      50
      New cards

      Sets color of visited links, using name or hex value

      51
      New cards

      Sets color of active links (while mouse-clicking)

      52
      New cards

      Creates a citation, usually processed in italics

      53
      New cards

      Sets size of font - 1 to 7 (should use CSS instead)

      54
      New cards

      Sets font color (should use CSS instead)

      55
      New cards

      Defines the font used (should use CSS instead)

      56
      New cards

      HTML Comment Tag

      The sample HTML code provided and described on this page includes the HTML markup for adding comments:

      57
      New cards

      Span Tag

      The span tag groups text for which we want to have different styling.

      58
      New cards

      tag

      Used to embed an image in an HTML document.

      59
      New cards

      Adds image; it is a separate file located at the URL

      60
      New cards

      Aligns image left/right/center/bottom/top/middle

      61
      New cards

      Sets size of border surrounding image (use CSS)

      62
      New cards

      Sets height of image, in pixels

      63
      New cards

      Sets width of image, in pixels

      64
      New cards

      ?/

      Sets the alternate text for browsers that can't process images (required by the ADA)

      65
      New cards

      tag

      Used to create a table in the HTML document.

      66
      New cards

      tag

      Used to make the rows in the table.

      67
      New cards

      tag

      Used to enter the data in the table.

      68
      New cards

      Sets the width of the border around table cells.

      69
      New cards

      Sets amount of space between table cells.

      70
      New cards

      Sets amount of space between a cell's border and its contents.

      71
      New cards

      Sets width of the table in pixels or as a percentage.

      72
      New cards

      Sets alignment for cells within the row (left/center/right).

      73
      New cards

      Sets alignment for cells (left/center/right).

      74
      New cards

      Sets vertical alignment for cells within the row (top/middle/bottom).

      75
      New cards

      Sets vertical alignment for cell (top/middle/bottom).

      76
      New cards

      Sets number of rows a cell should span (default=1).

      77
      New cards

      Sets number of columns a cell should span.

      78
      New cards

      Prevents lines within a cell from being broken to fit.

      79
      New cards

      Defines a form.

      80
      New cards

      Creates a scrolling menu. Size sets the number of menu items visible before user needs to scroll.

      81
      New cards

      Creates a pulldown menu.

      82
      New cards

      Sets off each menu item.

      83
      New cards

      Creates a text box area. Columns set the width; rows set the height.

      84
      New cards

      Creates a checkbox.

      85
      New cards

      Creates a checkbox which is pre-checked.

      86
      New cards

      Creates a radio button.

      87
      New cards

      Creates a radio button which is pre-checked.

      88
      New cards

      Creates a one-line text area. Size sets length, in characters.

      89
      New cards

      Creates a submit button. Value sets the text in the submit button.

      90
      New cards

      Creates a submit button using an image.

      91
      New cards

      Creates a reset button.