Online HTML Code
Quick reference for HTML tags and common snippets. Copy link, image, div, and other boilerplate.
Common HTML snippets. Copy and edit in your editor.
- Link
<a href="https://example.com">Link text</a>
- Image
<img src="image.jpg" alt="Description">
- Div
<div class="container">Content</div>
- Paragraph
<p>Paragraph text.</p>
- Unordered list
<ul> <li>Item 1</li> <li>Item 2</li> </ul>
- Ordered list
<ol> <li>First</li> <li>Second</li> </ol>
- Button
<button type="button">Click</button>
- Input text
<input type="text" name="field" placeholder="Enter...">
Frequently Asked Questions
- What is this tool?
- A small reference of common HTML tags and snippets you can copy: links, images, divs, lists, etc.
- Can I edit the snippets?
- Snippets are shown in the tool; copy and paste into your editor to modify placeholders.
- Where are attributes explained?
- Each snippet shows typical attributes; hover or check docs for full attribute reference.
Related Developer Tools
JSON Formatter
Format, validate, and beautify JSON. Minify or pretty-print with one click.
Base64 Decode
Decode Base64 strings to text. Encode text to Base64.
UUID Generator
Generate random UUIDs (v4) for unique identifiers. Copy with one click.
URL Encoder Decoder
Encode and decode URLs. Convert special characters for safe use in URLs.
Convert Color Hex to RGB
Convert hex color codes to RGB values (R, G, B).
Convert Color RGB to Hex
Convert RGB values (R, G, B) to hex color codes.