html essentials

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

1/12

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.

13 Terms

1
New cards

Image

It is a way to embed an image or an animated image, such as GIF, on an HTML webpage. The <img> tag has no closing tag and is used with the following syntax:

2
New cards

List

It is a way to group a set of related items in HTML. It has two

specifications for ordered and unordered list, but both uses the <li>

tag

3
New cards

Span

used to color or mark up a part of a text or document.

4
New cards

Navigation

tag to define a set of navigation links. The tag is only

used for major blocks of navigation links and not all links in an HTML

document. It represents a page section with links to other web pages

or parts within the same webpage.

5
New cards

Input and Control Functions

These are used to gather text information from users and are defined

by the <input> tag, which displays a type attribute such as the text,

radio, checkbox, and button. Note that the default width of any input

field is up to 20 characters.

The <label> tag is used to label any form elements while the <for>

attribute of the <label> tag must be equal to the ID attribute of the

<input> element to attach them

6
New cards

Text Field

It displays a single-line text input field for text input and uses the

<input type="text "> tag. Text fields have different inputs that web

programmers can apply, including a line of text, password, email,

contact number, and URL.

7
New cards

Radio Button

It allows users to select one of the available options and uses the

<input type="radio"> to display a radio button.

8
New cards

Checkbox

It allows users to select as many options as possible out of the available options.

9
New cards

Button

It is used to create a button with different functions.

10
New cards

Submit Buttom

It allows users to submit any data entered in the input field.

11
New cards

Audio

uses the <source> element

for the audio source file. The control attribute is used to add audio

controls such as play, pause, and volume.

12
New cards

Video

tag and uses the <source> element for the video source file. The poster attribute is used to display a thumbnail before playing the video.

13
New cards

Canvas

tag to draw graphics such as paths, boxes, circles, text, and adding images. This tag is only a container for graphics, and it requires JavaScript to draw the graphics.