Section 1

Preview this deck

<!doctype>

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

Section 1

(50 cards)

<!doctype>

Front

Used for specifying which version of HTML the document is using. This is referred to as the document type declaration (DTD), [HTML Tag]

Back

height

Front

An attribute within an <img /> tag that specifies the height of the image, [attribute]

Back

<code>

Front

Tag which defines computer code text (also known as a Computer Output tag), [HTML Tag]

Back

<!--...-->

Front

Tag is used for creating comments within your HTML code, [HTML Tag]

Back

HTML Element

Front

An HTML element is everything from the start tag to the end tag, eg: <p>this is the paragraph element</p>, [general]

Back

<body>

Front

The HTML <body> tag is used for indicating the main content section of the HTML document. The <body> tag is placed between the </head> and the </html> tags, [HTML Tag]

Back

<img />

Front

Tag used for embedding images into an HTML document, [HTML Tag]

Back

<table>

Front

Tag used for defining a table, the table tag contains other tags that define the structure of the table, [HTML Tag]

Back

<acronym>

Front

Tag which defines an acronym, [HTML Tag]

Back

<samp>

Front

Tag which defines sample computer code text (also known as a Computer Output tag), [HTML Tag]

Back

<td>

Front

Tag used for specifying a cell (or table data) within a table, [HTML Tag]

Back

alt

Front

Short version of "alternate text" attribute which specifies text to be used in case the browser/user agent can't render the image, [attribute]

Back

<var>

Front

Tag which defines a variable (also known as a Computer Output tag), [HTML Tag]

Back

style

Front

HTML provides a "style" attribute on most elements, to hold a fragment of a style sheet that applies to those elements. One of the possible style sheet languages is CSS, [attribute]

Back

<hr />

Front

A tag used for creating a horizontal rule (a separator line), [HTML Tag]

Back

<sub>

Front

Tag which defines subscripted text, [HTML Tag]

Back

<strong>

Front

Tag which defines strong text, [HTML Tag]

Back

<th>

Front

Tag used for specifying a header cell (or table header) within a table, [HTML Tag]

Back

<h2>

Front

Used for specifying level 2 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

border

Front

An attribute which specifies the width of the border around the table, [attribute]

Back

<html>

Front

Contains all other HTML tags (except for the !DOCTYPE tag which is located before the opening html tag), [HTML Tag]

Back

<em>

Front

Tag which defines emphasized text, [HTML Tag]

Back

<p>

Front

The <p>(paragraph) element acts as a container for the text between the start tag <p> and the end tag </p>, [HTML Tag]

Back

src

Front

shortened version of the word "source" used as an attribute in the <img /> tag, [attribute]

Back

attributes

Front

Provide additional information about HTML elements which come in name/value pairs eg: name="value"(names and values should be in lowercase), [general]

Back

<address>

Front

Tag which defines an address element, [HTML Tag]

Back

<kbd>

Front

Tag which defines keyboard text (also known as a Computer Output tag), [HTML Tag]

Back

<tt>

Front

Tag which defines teletype text (also known as a Computer Output tag), [HTML Tag]

Back

colspan

Front

An attribute that specifies the number of columns the current cell spans across, [attribute]

Back

<del>

Front

Tag which defines deleted text, [HTML Tag]

Back

<h5>

Front

Used for specifying level 5 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

<h6>

Front

Used for specifying level 6 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

HTML Tags

Front

Keywords surrounded by angle brackets, like <html>(also known as HTML markup tags), [general]

Back

<h3>

Front

Used for specifying level 3 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

<sup>

Front

Tag which defines superscripted text, [HTML Tag]

Back

<big>

Front

Tag which defines big text, [HTML Tag]

Back

width

Front

An attribute within an <img /> tag that specifies the width of the image, [attribute]

Back

<abbr>

Front

Tag which defines an abbreviation, [HTML Tag]

Back

<tr>

Front

Tag used for specifying a table row within a table, a table row contains one or more td and/or th tags which determine individual cells, [HTML Tag]

Back

href

Front

hypertext reference, [attribute]

Back

<br />

Front

Used for specifying a line break, contents after this tag are moved to a new line, [HTML Tag]

Back

<b>

Front

Tag which defines bold text, [HTML Tag]

Back

<h1>

Front

Used for specifying level 1 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

<a>

Front

Used for creating a hyperlink to either another document, or somewhere within the current document, [HTML Tag]

Back

<ins>

Front

Tag which defines inserted text, [HTML Tag]

Back

<pre>

Front

Tag which defines preformatted text (also known as a Computer Output tag), [HTML Tag]

Back

<h4>

Front

Used for specifying level 4 headings. There are 6 levels of headings, browsers typically render the various headings in different sizes, with h1 being the largest (most important) and h6 being the smallest (least important), [HTML Tag]

Back

<small>

Front

Tag which defines small text, [HTML Tag]

Back

rowspan

Front

An attribute that specifies the number of rows the current cell spans across, [attribute]

Back

<i>

Front

Tag which defines italic text, [HTML Tag]

Back

Section 2

(50 cards)

<meta>

Front

Tag placed in the <head> section which describes metadata within an HTML document (describes the information in the document) [HTML Tag]

Back

cols

Front

Defines the amount of screen area each column will occupy [attribute]

Back

target

Front

An attribute used for specifying how a link should be opened (values: _blank, _parent, _self, _top), [attribute]

Back

<bdo>

Front

Tag which defines the direction of text, [HTML Tag]

Back

<dd>

Front

Tag which defines a description of a term in a definition list, [HTML Tag]

Back

dir

Front

An attribute which sets the text direction (values: "ltr" OR "rtl"), [attribute]

Back

<iframe>

Front

Tag used for creating an inline frame (a frame inside an HTML page) [HTML Tag]

Back

coords

Front

An attribute which specifies the coordinates of an area, [attribute]

Back

<tbody>

Front

Tag which defines the table body (placed AFTER <thead> AND <tfoot>), [HTML Tag]

Back

<ul>

Front

Tag used for starting an unordered list (or un-numbered list), [HTML Tag]

Back

<dfn>

Front

Tag which defines a definition term, [HTML Tag]

Back

<input>

Front

This tag, when combined with the "type" attribute allows users to INPUT different TYPEs of data (values: button, checkbox, file, hidden, image, password, radio, reset, submit, text), [HTML Tag]

Back

<textarea>

Front

Tag which defines a multi-line text input field, [HTML Tag]

Back

<script>

Front

Defines the start of a script (like javascript), [HTML Tag]

Back

<thead>

Front

Tag which defines the table head (placed before <tfoot> and <tbody>), [HTML Tag]

Back

<optgroup>

Front

Tag used to group together related options in a drop-down box(enclose <option> tags to group them), [HTML Tag]

Back

<link>

Front

Tag placed in the <head> section which defines the relationship between a document and an external resource [HTML Tag]

Back

<tfoot>

Front

Tag which defines the table footer (placed after <thead> and BEFORE <tbody>), [HTML Tag]

Back

<title>

Front

Tag which is placed inside of the <head> that defines the html document title [HTML Tag]

Back

noresize

Front

A frame attribute which prevents people from re-sizing the frame [attribute]

Back

<dl>

Front

Tag used for starting a definition list (used together with <dt> and <dd> tags), [HTML Tag]

Back

rows

Front

Defines the amount of screen area each row will occupy [attribute]

Back

<option>

Front

Tag used to define an option in the drop-down box, [HTML Tag]

Back

<ol>

Front

Tag used for starting an ordered list (numbered list), [HTML Tag]

Back

<style>

Front

Tag which is placed in the <head> section in order start the description of a style sheet [HTML Tag]

Back

<cite>

Front

Tag which defines a citation, [HTML Tag]

Back

<col>

Front

Used for specifying column properties for each column within a colgroup (placed between the <colgroup> and </colgroup> tags), [HTML Tag]

Back

name

Front

Attaches a label of your choice to the HTML element so it can be linked within the document (<p name="label">,<a href="#label">), [attribute]

Back

<noframes>

Front

Tag used to enclose information for browsers that do not support the <frameset> tag [HTML Tag]

Back

<caption>

Front

Creates a table caption (placed between the <table> and <tr> tags), [HTML Tag]

Back

<map>

Front

Used in conjunction with the <area /> and <img /> tags to create an image map (an image with clickable parts), [HTML Tag]

Back

<legend>

Front

Tag used for labelling the fieldset element (used together with the <form> and <fieldset> tags), [HTML Tag]

Back

<base>

Front

Tag placed in the <head> section which defines the base URL for all the links on a page (sets the default) [HTML Tag]

Back

<select>

Front

Tag used for defining a select list (a drop-down box), [HTML Tag]

Back

<frame>

Front

Tag which holds the settings for each frame (like what HTML documents to put into the frame and the noresize attribute) [HTML Tag]

Back

<fieldset>

Front

Tag used for grouping related form elements (placed inside of the <form> element), [HTML Tag]

Back

nohref

Front

An attribute which specifies that an area has no associated link, [attribute]

Back

<label>

Front

Tag used for adding a label to a form control, [HTML Tag]

Back

<colgroup>

Front

Used for specifying properties for a group of columns within a table(placed between the <table> and <tr> tags), [HTML Tag]

Back

<area />

Front

Tag which defines an area inside an image-map (used in conjunction with the <map> and <img /> tags), [HTML Tag]

Back

<blockquote>

Front

Tag which defines a long quotation, [HTML Tag]

Back

<frameset>

Front

Tag which defines how to divide the window into frames [HTML Tag]

Back

<div>

Front

Tag used with block-level elements (can group multiple elements together), [HTML Tag]

Back

<dt>

Front

Tag which defines a term (an item) in a definition list, [HTML Tag]

Back

<form>

Front

An area that can contain form elements (elements that allow the user to enter information), [HTML Tag]

Back

<span>

Front

Tag used for grouping and applying styles to inline elements (inline as in the inside of the element), [HTML Tag]

Back

<li>

Front

Tag used for specifying a list item (nest together with <ul> and <ol> tags), [HTML Tags]

Back

shape

Front

Attribute used to specify the shape of an area (values: default, rect, circle, poly), [attribute]

Back

<head>

Front

Tag which contains general information, also called meta-information, about an HTML document[HTML Tag]

Back

<button>

Front

Tag used for creating a button within forms, [HTML Tag]

Back