Section 1

Preview this deck

<title>

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 (21)

Section 1

(21 cards)

<title>

Front

defines a title for the document

Back

<!DOCTYPE>

Front

defines the document type

Back

<img src="image.gif" alt="MyImage">

Front

HTML code for inserting an image

Back

<img>

Front

tag that defines an image

Back

<ol>

Front

Tag for an ordered (numbered) list

Back

alt

Front

gives an alternate text for an image if the image cannot be displayed

Back

<h1>

Front

HTML element for the largest size heading

Back

<!--...-->

Front

comment tag (text added to make the source code easier for humans to understand - generally ignored by compilers and interpreters.)

Back

<style>

Front

tag to define style information for a document

Back

<header>

Front

defines a header in a document or section

Back

<ul>

Front

Tag for an unordered (bulleted) list

Back

<div>

Front

tag to defines a division or section in an HTML document

Back

<p>

Front

defines a paragraph

Back

<em>

Front

tag that defines emphasized (ex. bold or italic) text

Back

<html>

Front

defines an HTML document

Back

</...>

Front

character used to indicate an end tag

Back

<h1> to <h6>

Front

defines HTML headings

Back

<body>

Front

defines the document body which contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.

Back

<br>

Front

inserts a single line break

Back

<a href="http://www.yahoo.com"> </a>

Front

defines a hyperlink to www.yahoo.com

Back

<li>

Front

tag for a list item

Back