WEEK 3 Part 1

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/60

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:48 AM on 8/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

61 Terms

1
New cards

HTML

backbone of web content

2
New cards

HTML elements

define the structure of a web page

3
New cards

tags

provide semantic meaning to content, such as headings, paragraphs, lists, etc

4
New cards

attributes

can be added to tags to provide additional information or functionality

5
New cards

block level elements and inline elements

in HTML, elements are divided into two main categories. they differ in how they structure and display content on a web page

6
New cards

block-level elements

always start on a new line

occupy the full width available

used for layout and structure

7
New cards

inline elements

do not start on a new line

take up only as much width as needed

used for text formatting and small parts of content

8
New cards

paragraph ( <p>)

the most rudimentary elements of a text document. you indicate this with the ___ element

9
New cards

<br>

this tag is used to insert a line break in text, similar to pressing the “Enter” key in a word processor

10
New cards

line break

its an empty tag, meaning it does not have a closing tag

11
New cards

horizontal rule: <hr>

this is used to create a horizontal line across webpage. commonly used to visually separate content within a page, indicating a thematic break or shift in content

12
New cards

<h1> to <h6>

represent headings of different levels. they define content structure and hierarchy. nested headings create a clear document outline

13
New cards

align

specifies the alignment of the text inside the heading. possible values: left, center, right

14
New cards

title

is a text that appears when the mouse passes over the heading

15
New cards

Lists

very common in web pages. they’re used in online articles, navigation menus, and product features on e-commerce websites

16
New cards

unordered list

ordered list

nested list

there are few different types of list you can use, depending on the content you want to display

17
New cards

unordered list

a simple HTML list that you can use when the order of the items you’re listing isn’t important (rearranging order wont cause confusion)

18
New cards

ordered list

used when the order of the items is important

19
New cards

nested list

a little more complex, because it’s essentially a “list within a list”

20
New cards

hyperlinks (anchor tag): <a>

html links are ____ which allow the user to click and navigate to another page or document

21
New cards

href

specifies the URL of the page or resource the link points to. this can be an absolute or relative URL

22
New cards

target

specifies where to open the linked document

23
New cards

rel

specifies the relationship between the current document and the linked document

24
New cards

type

specifies the media type of the linked document

25
New cards

download

specifies that the target will be downloaded when the link is clicked

26
New cards

media

specifies what media/device the linked document is optimized for

27
New cards

absolute links

provides the full URL of the target resource

28
New cards

relative links

specifies a path relative to the current document’s location

29
New cards

local link

a link to a page within the same website

30
New cards

mailto

use ____ inside the href attribute to create a link that opens the user’s email program (to let them send a new email)

31
New cards

<img>

this contains attributes only and does not have a closing tag

32
New cards

src

this attribute specifies the location of the image

33
New cards

alt attribute

this attribute provides alternative text for an image

34
New cards

border

default value is 0, set the width of the border that surrounds the image

35
New cards

italic: <i>

to denote text

36
New cards

emphasized <em>

usually used as image captions

37
New cards

marked text <mark>

highlight the background of the text

38
New cards

striked out text <strike>

place a horizontal line across the text

39
New cards

underlined text <u>

used for links or text highlights

40
New cards

subscript text <sub>

typographical stylistic choice

41
New cards

superscript text <sup>

another typographical presentation style

42
New cards

<blockquote>

defines a section that is quoted from another source

43
New cards

<q>

short inline quotation

44
New cards

<dfn>

used to indicate defining instance of a term, often displayed in italic

45
New cards

<abbr>

used for abbreviation or acronyms

46
New cards

nesting tags

combine the effects of one type of tags

47
New cards

<!-- -->

comment in html

48
New cards

class Attribute

specifies one or more class names for an HTML element

49
New cards

id attribute

specifies a unique identifier for an HTML element

50
New cards

element

in html, these are often categorized into semantic and non-semantic tags

51
New cards

semantic elements

clearly describe their meaning in a human- and machine-readable way

52
New cards

<header>

represents the header of a document or section

53
New cards

<nav>

defines a set of navigation links

54
New cards

<main>

represents the main content of the document

55
New cards

<article>

represents a self-contained piece of content

56
New cards

<section>

defines a section in a document

57
New cards

<aside>

represents content related to the main content but separate from it, like a sidebar or pull quote

58
New cards

<footer>

represents the footer of a document or section, typically containing copyright informtion

59
New cards

non semantic elements

do not provide information about their content, making them less descriptive

60
New cards

<div>

block-level element used to group content or apply styles without implying any meaning

61
New cards

<span>

an inline element used to group small pieces of content for styling or scripting without implying any meaning. used as a generic container for inline elements, allowing you to group and style parts of your HTML content