Explore tens of thousands of sets crafted by our community.
HTML Elements
45
Flashcards
0/45
<hr>
Represents a thematic break between paragraph-level elements (e.g., a shift of topic).
<html>
Defines the root of an HTML document.
<title>
Specifies the title of the document.
<p>
Defines a paragraph.
<head>
Contains metadata/information for the document.
<!DOCTYPE>
Declares the document type and version of HTML.
<h1> to <h6>
Define headers, with <h1> being the highest level and <h6> the lowest.
<body>
Represents the document's body, contains all the contents of an HTML document.
<br>
Inserts a single line break.
<img>
Embeds an image into the document.
<a>
Defines a hyperlink, which is used to link from one page to another.
<li>
Defines a list item, used inside ordered (<ol>) or unordered (<ul>) lists.
<ol>
Defines an ordered list, and list items (<li>) inside will be numbered.
<ul>
Defines an unordered list, and list items (<li>) inside will be bulleted.
<tr>
Defines a row in a table.
<table>
Defines a table.
<td>
Represents a cell in a table, containing data.
<th>
Defines a header cell in a table.
<form>
Creates an HTML form for user input.
<select>
Defines a drop-down list.
<button>
Defines a clickable button.
<textarea>
Defines a multi-line text input control.
<input>
Defines an input control.
<header>
Represents introductory content, typically a group of introductory or navigational aids.
<meta>
Provides metadata about the HTML document, such as character set, page description, and keywords.
<link>
Used to link a external resources like CSS files.
<option>
Defines an option in a drop-down list.
<iframe>
Represents a nested browsing context, embedding another HTML page within the current one.
<code>
Defines a piece of computer code.
<pre>
Defines preformatted text, where whitespace is preserved.
<span>
A generic inline container for phrasing content, used to group elements for styling purposes.
<style>
Used to include internal CSS styling within the HTML document.
<time>
Represents a specific period in time.
<footer>
Defines the footer for a document or section.
<script>
Used to embed or reference executable code, typically JavaScript.
<article>
Defines an independent, self-contained content.
<q>
Defines a short inline quotation.
<nav>
Defines a set of navigation links.
<div>
A generic container for flow content, which is used to group elements for styling purposes.
<aside>
Defines some content aside from the content it is placed in.
<figcaption>
Defines a caption for a <figure> element.
<section>
Defines a section in a document, such as chapters, headers or footers.
<figure>
Used to encapsulate media such as an image, illustration, diagram, code snippet, etc.
<blockquote>
Defines a section that is quoted from another source.
<abbr>
Represents an abbreviation or acronym, optionally with its full description or definition.
© Hypatia.Tech. 2024 All rights reserved.