 Call Kai
Call Kai Learn
Learn Practice Test
Practice Test Spaced Repetition
Spaced Repetition Match
Match1/45
Looks like no tags are added yet.
| Name | Mastery | Learn | Test | Matching | Spaced | 
|---|
No study sessions yet.
<!DOCTYPE html>
Declares the document type and version of HTML
<html>
Root element that contains all other elements in the page
<head>
Contains metadata links to stylesheets and page information
<title>
Specifies the title of the web page shown in the browser tab
<body>
Contains all the visible page content
<h1> to <h6>
Define headings from largest to smallest
<p>
Defines a paragraph of text
<a>
Creates a hyperlink using the href attribute
<img>
Embeds an image using src and alt attributes
<div>
Block-level container used for grouping or layout
<span>
Inline container used to style part of text
<header>
Defines the top section or introductory content
<nav>
Defines a section containing navigation links
<main>
Specifies the main content area of the page
<section>
Groups related content into thematic sections
<article>
Defines an independent piece of content like a post
<footer>
Defines the footer section of a page or article
<ul>
Defines an unordered bulleted list
<ol>
Defines an ordered numbered list
<li>
Defines a list item
<form>
Creates an input form for user data
<label>
Associates a caption with a form control
<input>
Defines a single-line input field
<textarea>
Creates a multi-line text input area
<button>
Creates a clickable button
<select>
Creates a dropdown menu
<option>
Defines an option within a dropdown
<fieldset>
Groups related form controls together
<legend>
Provides a caption for a <fieldset>
type="text"
Allows user to enter plain text
type="password"
Masks characters for password entry
type="email"
Accepts email addresses with validation
type="number"
Accepts numeric input only
type="date"
Provides a calendar date picker
type="time"
Allows input of a specific time
type="checkbox"
Lets users select one or more options
type="radio"
Allows selecting only one option from a group
type="file"
Allows the user to upload a file
type="submit"
Submits the form data
type="reset"
Resets the form fields to default values
type="button"
Triggers a custom action via script
type="color"
Lets users choose a color
type="range"
Lets users pick a numeric value within a range
type="hidden"
Stores hidden data not visible to users
type="search"
Creates a search field optimized for queries
type="url"
Accepts website URLs with validation