1/55
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
<!-- You won't see me on the page. -->
Defines a comment in HTML.
<!DOCTYPE html>
Defines the document type; first line of an HTML page.
<a>
Defines a hyperlink; usually contains the href attribute to function properly.
href="http://somesiteaddress.com"
Attribute that indicates where a hyperlink should go.
target="_blank"
Attribute that defines where a hyperlink should open (new tab).
<abbr>
Defines an abbreviation or acronym.
<address>
Defines contact information for the author or owner of a document.
<article>
Defines an article.
<aside>
Defines content aside from the main page content (sidebar).
<audio>
Defines sound content.
<blockquote>
Defines a section quoted from another source.
<body>
Defines the body of the document where content appears.
<br>
Defines a single line break.
<canvas>
Used to draw graphics via scripting (JavaScript); HTML5.
<code>
Defines a piece of computer code.
<del>
Creates strikethrough text.
<div>
Defines a section or container in a document.
<em>
Defines emphasized (italicized) text.
<embed>
Defines a container for external (non-HTML) content.
<figcaption>
Provides a caption for a figure.
<figure>
Specifies self-contained content like images or charts.
<footer>
Defines the footer of a document or section.
<form>
Defines an HTML form for user input.
<h1> to <h6>
Define headings from largest (h1) to smallest (h6).
<head>
Contains metadata and links in an HTML document.
<header>
Defines a header for a document or section.
<hr>
Creates a horizontal rule.
<html>
Defines the root of an HTML document.
<iframe>
Defines an inline frame.
<img>
Embeds an image; must use the src attribute.
src="imagename.jpg"
Specifies the image source.
alt="Description goes here"
Describes the image for accessibility.
<li>
Defines a list item.
<link>
Links an external resource like a stylesheet.
<main>
Specifies the main content of the page.
<mark>
Highlights text.
<meta>
Provides metadata about the document.
<nav>
Defines navigation links.
<ol>
Defines an ordered (numbered) list.
<p>
Defines a paragraph.
<script>
Defines a client-side script.
<section>
Defines a section of content.
<source>
Specifies media sources for
<span>
Defines an inline section of content.
<strong>
Defines strong (bold) text.
<style>
Defines CSS styles within a document.
<table>
Defines a table.
<td>
Defines a cell in a table.
<th>
Defines a table header cell.
<tr>
Defines a row in a table.
<title>
Sets the title of the document.
<track>
Provides text tracks for video or audio.
<ul>
Defines an unordered list.
<video>
Embeds video content.
style="property:value;"
Provides inline styling for elements.
id="value"
Assigns an ID to an HTML element for styling or scriptin