HTML

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

1/9

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.

10 Terms

1
New cards

HTML abbreviation

Hyper Text Markup Language

2
New cards

basic html web page structure

<!DOCTYPE html>

<html lang='“eng”>

<head>

<title>Page title goes here</title>

<meta charset=”utf-8”>

</head>

<body>

…body text & more html tags…

</body>

</html>

3
New cards

meta element

<meta charset=”utf-8”>

known as a standalone or “void” element, tells the browser how to interpret the text on the page. “utf=8” is the standard and supports most characters from all languages.

4
New cards

html heading elements

<h1>Heading level 1</h1> (largest)

<h2>Heading level 2</h2>

<h3>Heading level 3</h3>

<h4>Heading level 4</h4>

<h5>Heading level 5</h5>

<h6>Heading level 6</h6> (smallest)

5
New cards
<p>blockquote element</p>

blockquote element

<blockquote>

<p>The only way to do great work is to love what you do.</p>

</blockquote>

6
New cards
<p>ordered list</p>

ordered list

<ol>

<li>First item</li>

<li>Second item</li>

<li>Third item</li>

</ol>

7
New cards
<p>unordered list</p>

unordered list

<ul>

<li>First item</li>

<li>Second item</li>

<li>Third item</li>

</ul>

8
New cards

special characters

ex: copyright symbol

<p>&copy; Copyright 2022</p>

Result:

©Copyright 2022

9
New cards

structural elements of an html page

knowt flashcard image
10
New cards

description lists

  • <dl> (description list) - the parent element that encloses the entire description list

  • <dt> (description term) - defines a term or name within the list

  • <dd> (description definition) - the description or definition for the <dt> element

<ul><li><p>&lt;dl&gt; (description list) - the parent element that encloses the entire description list</p></li><li><p>&lt;dt&gt; (description term) - defines a term or name within the list</p></li><li><p>&lt;dd&gt; (description definition) - the description or definition for the &lt;dt&gt; element</p></li></ul><p></p>