Section 1

Preview this deck

<ul> </ul>

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (12)

Section 1

(12 cards)

<ul> </ul>

Front

Unordered list- Bullet points

Back

<li> </li>

Front

List item- This must be inside of a order or unordered list.

Back

<body> </body>

Front

Contains all the main contents of your web page

Back

<!DOCTYPE html>

Front

Tells the computer that this is a document written in HTML

Back

<!— —>

Front

Comment- A readable note in the source code of a computer program

Back

<a> </a> <a href="Link Target"> Link text</a>

Front

Hyperlink- a link from a HTML file to another location or file.

Back

<html> </html>

Front

Indicates the beginning of your code written in HTML

Back

<h1> </h1> (largest) <h2> </h2> <h3> </h3> <h4> </h4> <h5> </h5> <h6> </h6> (Smallest)

Front

Heading tag- Usually a title and can be in the form of six different sizes.

Back

<head> </head>

Front

Contains information about your webpage

Back

<ol> </ol>

Front

Ordered list- Numbered list

Back

<p> </p>

Front

Paragraph tags- Can be in the form of any length. It can consist of one word to a bunch of sentences.

Back

<img/> <img src="Image Filename" alt= "Image Description"/>

Front

Image Tag

Back