HTML Cheat Sheet
Aranabilir, yazdırılabilir bir HTML5 referansı — belge iskeleti, semantik etiketler, bağlantılar, medya, tablolar, formlar, öznitelikler ve entity'ler. Ücretsiz.
Document skeleton & metadata
13<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page title</title>
<meta name="description" content="...">
<link rel="stylesheet" href="app.css">
<script src="app.js" defer></script>
<link rel="icon" href="favicon.svg">
<link rel="canonical" href="https://ex.com/page">
<meta property="og:title" content="...">
<meta property="og:image" content="...">
<meta name="robots" content="noindex">
Text content
14<h1>...</h1> to <h6>
<p>...</p>
<br> / <hr>
<strong> vs <b>
<em> vs <i>
<mark>highlight</mark>
<small> / <s>
<blockquote cite="url">
<q>inline quote</q>
<pre><code>...</code></pre>
<abbr title="HyperText...">HTML</abbr>
<time datetime="2026-07-27">
<sub> / <sup>
<kbd>Ctrl+C</kbd>
Semantic layout
12<header>
<nav>
<main>
<article>
<section>
<aside>
<footer>
<figure><figcaption>
<address>
<article><h2>...</h2></article>
<div>
<span>
Links & navigation
11<a href="https://example.com">
<a href="#pricing">
<a href="mailto:hi@example.com">
<a href="tel:+1234567890">
target="_blank"
rel="noopener noreferrer"
rel="nofollow"
<a href="file.pdf" download>
download="report-2026.pdf"
<nav><ul><li><a>...</a></li></ul></nav>
<a href="#main" class="skip-link">
Images & media
12<img src="cat.jpg" alt="A sleeping cat">
<img ... width="800" height="600">
loading="lazy"
decoding="async"
srcset="s.jpg 480w, l.jpg 1024w" sizes="100vw"
<picture><source type="image/webp" ...><img ...></picture>
<video src="clip.mp4" controls poster="cover.jpg">
<video autoplay muted loop playsinline>
<audio src="talk.mp3" controls>
<source src="v.webm" type="video/webm">
<track kind="captions" src="en.vtt" srclang="en">
<figure><img ...><figcaption>...</figcaption></figure>
Lists & tables
11<ul><li>...</li></ul>
<ol><li>...</li></ol>
<ol start="5" reversed>
<ol type="a">
<dl><dt>Term</dt><dd>Definition</dd></dl>
<table><thead><tbody><tfoot>
<caption>Sales 2026</caption>
<th scope="col"> / scope="row"
<td colspan="2"> / rowspan="2">
<colgroup><col span="2" class="wide">
Nested list: <li>...<ul>...</ul></li>
Forms — input types
14<input type="text">
<input type="email">
<input type="password">
<input type="number" min="0" step="1">
<input type="tel"> / type="url">
<input type="search">
<input type="date"> / "time" / "datetime-local"
<input type="color">
<input type="range" min="0" max="100">
<input type="file" accept="image/*" multiple>
<input type="checkbox" checked>
<input type="radio" name="plan">
<input type="hidden" name="token">
<input type="submit"> / <button>
Forms — structure & validation
15<form action="/save" method="post">
<label for="email">
<label>Email <input ...></label>
name="email"
required
pattern="[0-9]{4}"
minlength / maxlength
min / max / step
placeholder="you@example.com"
autocomplete="email"
<select><optgroup><option>
<textarea rows="4" name="msg">
<fieldset><legend>Shipping</legend>
<input list="fruits"><datalist id="fruits">
<form novalidate>
Interactive elements
13<details><summary>More</summary>...</details>
<details open>
<details name="faq">
<dialog id="dlg">...</dialog>
dlg.showModal() / dlg.close()
<form method="dialog">
::backdrop
<div popover id="tip">...</div>
<button popovertarget="tip">
<progress value="70" max="100">
<meter value="0.6" low="0.3" high="0.8">
<output for="a b">
<button type="button">
Embedded content
11<iframe src="https://ex.com" title="Map">
<iframe sandbox="allow-scripts">
<iframe allow="fullscreen; autoplay">
<iframe loading="lazy">
<canvas id="chart" width="600" height="300">
canvas.getContext('2d')
<svg viewBox="0 0 100 100">...</svg>
<svg><use href="#icon-x"/></svg>
<object data="doc.pdf" type="application/pdf">
<embed src="file.svg">
<noscript>...</noscript>
Global attributes
14id="unique-name"
class="card featured"
data-user-id="42"
title="Tooltip text"
hidden
tabindex="0" / "-1"
contenteditable="true"
spellcheck="false"
lang="fr" / dir="rtl"
draggable="true"
inert
aria-label="Close"
aria-hidden="true"
role="alert"
Entities & special characters
12&
< / >
" / '
© / ® / ™
— / –
…
→ / ←
× / ÷
€ / £ / ¥
👍
<meta charset="utf-8"> first
“:q” ile eşleşen bir girdi yok.
HTML Cheat Sheet Hakkında
Bu HTML cheat sheet, tüm etiket listesini tek bir aranabilir sayfaya koyar: belge iskeleti ve meta veriler, metin içeriği, semantik düzen, bağlantılar ve gezinme, görseller ve medya, listeler ve tablolar, form girdi türleri, form yapısı ve doğrulama, etkileşimli öğeler, gömülü içerik, genel öznitelikler ve entity'ler ve özel karakterler.
Etiketler kadar ayrıntılar için de kullanışlıdır — bir tarih veya renk için hangi input türünün kullanılacağı, required ve pattern doğrulama öznitelikleri, article, section ve aside arasındaki semantik fark veya bölünmez boşluk ve kıvrık tırnak için entity kodu.
Bu sayfa ücretsiz ve istemci tarafındadır: arama kutusuyla satırları canlı olarak filtreleyin, yapışkan içindekiler tablosundan bölümler arasında atlayın, herhangi bir kod parçasını tek tıklamayla kopyalayın ve sayfayı masanızda referans olarak yazdırın.
HTML Cheat Sheet Nasıl Kullanılır
- Belge iskeleti ve meta veriler ile Semantik düzenden Formlar ve Entity'lere kadar bölümleri gözden geçirin.
- picture, aria-label veya required gibi bir etiket veya öznitelik arayarak her satırı canlı olarak filtreleyin.
- Bir alan için doğru kontrole ihtiyacınız olduğunda Formlar — girdi türleri bölümüne atlayın.
- HTML'yi panonuza kopyalamak için bir kod parçasına veya kopyala simgesine tıklayın.
- Çevrimdışı HTML referansı için sayfayı yazdırın.