Comment tag
<!-- -->
<em></em>
HTML tag to emphasize text.
<cite></cite>
HTML tag for titles of works in text.
<strong></strong>
HTML tag to embolden important text.
<mark></mark>
HTML tag to highlight text.
<var></var>
HTML tag to define a variable in computer program.
<kbd></kbd>
HTML tag to define keyboard input.
<code></code>
HTML tag for computer code.
<samp></samp>
HTML tag for sample output from computer.
<b></b>
HTML tag for bold text.
<i></i>
HTML tag for alternate voice or word from another language.
<u></u>
HTML tag for text rendered differently from other text. Underlined.
HTML
Hyper text markup language. Used to define webpage structure and content.
CSS
Cascading Style Sheets. Used to specify webpage layout and visible appearance.
JavaScript
Describes a webpage's dynamic behaviors and actions.
<!— —>
HTML comment tag.
<ul></ul>
HTML unordered list tag.
<li></li>
HTML list item tag.
<ol></ol>
HTML ordered list tag.
type="1", type="A", type="a", type="I", type="i"
Ordered list types: 1=numbers, A=uppercase letters, a=lowercase letter, I=uppercase
roman numerals, i=lowercase roman numerals
<ul style="list-style-type:________">
Changes style of ul bullets. Ex: square, lower-greek
<table></table>
, HTML table tag.
<tr></tr>
HTML table row tag.
<th></th>
HTML table header tag. Usually automatically centers and bolds. Nests inside table row
tag.
<td></td>
HTML table data cell tag. Nests inside table row tag.
<caption></caption>
HTML table caption tag.
<td colspan="3"></td>
HTML table column span attribute. Side to side
<td rowspan="3"></td>
HTML table row span attribute. Up and down
Optional table tags HTML
<thead>, <tbody>, <tfoot>
<img src="cat.jpg" alt="cat">
HTML image tag with alternative text description.
<img src="cat.jpg" alt="cat" width="200" height="100">
HTML image tag with alt description and 200x100 px aspect ratio.
Web browsers support what three image formats?
JPEG, PNG, and GIF.
Lossy Compression
Data compression that occurs in JPEGs that results in some lost information.
Lossless Compression
Data compression that occurs in PNG and GIF that results in no lost information or
quality.
Favicon
Small identifying icon on browser tabs.
<a href="https://website.org/">Website</a>
HTML hyperlink tag.
HTTPS
Hypertext Transfer Protocol Secure
HTTP
Hypertext Transfer Protocol
FTP
File Transfer Protocol
Absolute URL
A URL that gives the full path to a resource.
Relative URL
A URL that gives an abbreviated path to a resource using the current page as a starting
position.
../test.html
Indication that the file is one directory above the current HTML document that contains
the given link.
Fragment