Introduction to HTML and Web Development Basics

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

1/83

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.

84 Terms

1
New cards

HTML

HyperText Markup Language, the standard language for creating and designing webpages and web applications.

2
New cards

Markup Language

A set of markup tags used to describe web pages.

3
New cards

HTML Tags

Markup tags used in HTML to structure web pages.

4
New cards

Case Sensitivity in HTML

HTML is not a case sensitive language.

5
New cards

HTML Document

Contains HTML tags and plain text.

6
New cards

Foundation of Web Development

HTML provides the basic structure of websites, enhanced by CSS and JavaScript.

7
New cards

Accessibility

A well-structured HTML document ensures web content is accessible to all users, including those with disabilities.

8
New cards

SEO

Proper use of HTML tags helps improve search engine optimization, making websites more discoverable.

9
New cards

Cross-Browser Compatibility

HTML ensures that web content displays consistently across different browsers.

10
New cards

HTML 4 vs HTML 5

Understanding the differences in elements and tags between HTML4 and HTML5.

<p>Understanding the differences in elements and tags between HTML4 and HTML5.</p>
11
New cards

HTML Tag Structure

A tag is always enclosed in angle brackets, e.g., .

12
New cards

Start Tag

The opening tag in a pair, e.g., .

13
New cards

End Tag

The closing tag in a pair, e.g., .

14
New cards

Opening Tags

Another term for start tags.

15
New cards

Closing Tags

Another term for end tags.

16
New cards

IDE

Integrated Development Environment used to write HTML code.

17
New cards

File Extension for HTML

HTML files are saved with a (.Html) or (.Htm) extension.

18
New cards

Web Browser Purpose

To read HTML documents and display them as web pages.

19
New cards

Tag

Describes the HTML web page that is to be viewed by a web browser.

20
New cards

Tag

Defines the header section of the page.

21
New cards

Shows a caption in the title bar of the page.

22
New cards

Tag

Displays the contents of the web page.

23
New cards

Container Element

Tags that contain both a start tag and an end tag.

24
New cards

Empty Element

Tags that contain only a start tag, e.g.,
.

25
New cards

Heading Elements

There are six heading elements (

,

,

,

,

,
), all requiring a closing tag.

<p>There are six heading elements (<h1>,</h1><h2>,</h2><h3>,</h3><h4>,</h4><h5>,</h5><h6>), all requiring a closing tag.</h6></p>
26
New cards

Tag

Defines a paragraph in HTML.

27
New cards


Tag

Used for a line break without starting a new paragraph.

28
New cards


Tag

Defines a horizontal line in HTML.

29
New cards

Defines bold text

30
New cards

Defines big text

31
New cards

Defines emphasized text

32
New cards

Defines italic text

33
New cards

Defines small text

34
New cards

Defines strong text

35
New cards

Defines subscripted text

36
New cards

Defines superscripted text

37
New cards

Defines inserted text

38
New cards

Defines deleted text

39
New cards

Defines teletype text

40
New cards

Defines underline text

41
New cards

Defines strike text

42
New cards

bgcolor

The attribute used for changing the background color of the page.

43
New cards

text

Used to change the color of the enclosed text.

44
New cards

The HTML anchor element used to define both hyperlinks and anchors.

45
New cards

href

The attribute that defines the link address.

46
New cards

Defines an image.

47
New cards

src

Stands for 'source', the URL of the image you want to display.

48
New cards

alt

Defines 'alternate text' for an image.

49
New cards

width

Defines the width of the image.

50
New cards

height

Defines the height of the image.

51
New cards

border

Defines the border of the image.

52
New cards

cellspacing

Amount of space between table cells.

53
New cards

cellpadding

Space around the edges of each cell.

54
New cards

  • An empty tag used for representing the list items.

    55
    New cards

      Defines an ordered list.

      56
      New cards

        Defines an unordered list.

        57
        New cards

        Defines a definition list.

        58
        New cards

        Defines a term (an item) in a definition list.

        59
        New cards

        Defines a description of a term in a definition list.

        60
        New cards

        form

        An area that can contain form elements.

        61
        New cards

        Form elements

        Elements that allow the user to enter information in a form, like text fields, textarea fields, drop-down menus, radio buttons, and checkboxes.

        <p>Elements that allow the user to enter information in a form, like text fields, textarea fields, drop-down menus, radio buttons, and checkboxes.</p>
        62
        New cards

        Form

        Defined with the

        tag, it is used to create an input field.

        63
        New cards

        Used to create an input field.

        64
        New cards

        Creates a single line text entry field.

        65
        New cards

        Defines a text-area (a multi-line text input control).

        66
        New cards

        Creates a single line text entry field where characters entered are shown as asterisks (*).

        67
        New cards

        Defines a label to a control.

        68
        New cards

        Creates a Radio Button.

        69
        New cards

        Defines a selectable list (a drop-down box).

        70
        New cards

        Defines a push button.

        71
        New cards

        Attribute of the option element to select or unselect a checkbox.

        72
        New cards

        Defines a checkbox input.

        73
        New cards

        A selectable list.

        74
        New cards

        Multimedia

        A combination of various elements such as video, graphics, sound, and text.

        75
        New cards

        Audio in HTML5

        The

        76
        New cards

        src attribute

        Used to link to the audio file in the

        77
        New cards

        Audio Attributes

        Attributes that control audio playback, including autoplay, autobuffer, controls, preload, and src.

        78
        New cards

        A new feature added in HTML5 for embedding video content on the Web page.

        79
        New cards

        autoplay (audio/video)

        Specifies whether to start the audio or video automatically once the object is loaded.

        80
        New cards

        muted (video)

        Allows to mute the video initially.

        81
        New cards

        loop (video)

        Specifies that the browser should repeat playing the existing video once more.

        82
        New cards

        preload (audio/video)

        Specifies whether the audio or video should be loaded when the page loads.

        83
        New cards

        controls (audio/video)

        Identifies the playback controls that should be displayed.

        84
        New cards

        height and width attributes (video)

        Specifies the dimensions of the video display.