HTML tags working

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

1/55

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

56 Terms

1
New cards

<!-- You won't see me on the page. -->

Defines a comment in HTML.

2
New cards

<!DOCTYPE html>

Defines the document type; first line of an HTML page.

3
New cards

<a>

Defines a hyperlink; usually contains the href attribute to function properly.

4
New cards

href="http://somesiteaddress.com"

Attribute that indicates where a hyperlink should go.

5
New cards

target="_blank"

Attribute that defines where a hyperlink should open (new tab).

6
New cards

<abbr>

Defines an abbreviation or acronym.

7
New cards

<address>

Defines contact information for the author or owner of a document.

8
New cards

<article>

Defines an article.

9
New cards

<aside>

Defines content aside from the main page content (sidebar).

10
New cards

<audio>

Defines sound content.

11
New cards

<blockquote>

Defines a section quoted from another source.

12
New cards

<body>

Defines the body of the document where content appears.

13
New cards

<br>

Defines a single line break.

14
New cards

<canvas>

Used to draw graphics via scripting (JavaScript); HTML5.

15
New cards

<code>

Defines a piece of computer code.

16
New cards

<del>

Creates strikethrough text.

17
New cards

<div>

Defines a section or container in a document.

18
New cards

<em>

Defines emphasized (italicized) text.

19
New cards

<embed>

Defines a container for external (non-HTML) content.

20
New cards

<figcaption>

Provides a caption for a figure.

21
New cards

<figure>

Specifies self-contained content like images or charts.

22
New cards

<footer>

Defines the footer of a document or section.

23
New cards

<form>

Defines an HTML form for user input.

24
New cards

<h1> to <h6>

Define headings from largest (h1) to smallest (h6).

25
New cards

<head>

Contains metadata and links in an HTML document.

26
New cards

<header>

Defines a header for a document or section.

27
New cards

<hr>

Creates a horizontal rule.

28
New cards

<html>

Defines the root of an HTML document.

29
New cards

<iframe>

Defines an inline frame.

30
New cards

<img>

Embeds an image; must use the src attribute.

31
New cards

src="imagename.jpg"

Specifies the image source.

32
New cards

alt="Description goes here"

Describes the image for accessibility.

33
New cards

<li>

Defines a list item.

34
New cards

<link>

Links an external resource like a stylesheet.

35
New cards

<main>

Specifies the main content of the page.

36
New cards

<mark>

Highlights text.

37
New cards

<meta>

Provides metadata about the document.

38
New cards

<nav>

Defines navigation links.

39
New cards

<ol>

Defines an ordered (numbered) list.

40
New cards

<p>

Defines a paragraph.

41
New cards

<script>

Defines a client-side script.

42
New cards

<section>

Defines a section of content.

43
New cards

<source>

Specifies media sources for

44
New cards

<span>

Defines an inline section of content.

45
New cards

<strong>

Defines strong (bold) text.

46
New cards

<style>

Defines CSS styles within a document.

47
New cards

<table>

Defines a table.

48
New cards

<td>

Defines a cell in a table.

49
New cards

<th>

Defines a table header cell.

50
New cards

<tr>

Defines a row in a table.

51
New cards

<title>

Sets the title of the document.

52
New cards

<track>

Provides text tracks for video or audio.

53
New cards

<ul>

Defines an unordered list.

54
New cards

<video>

Embeds video content.

55
New cards

style="property:value;"

Provides inline styling for elements.

56
New cards

id="value"

Assigns an ID to an HTML element for styling or scriptin