HTML CapabilitiesExample |
Version | v0.9.0 | |
---|---|---|---|
Updated | |||
Author | Víctor Goñi Sanz | License | MIT |
A brief test of HTML features, showcasing common elements used in webpages.
This demonstrates different HTML heading levels.
You can style text with emphasis in HTML as well:
You can create ordered lists:
Unordered lists are also simple:
Using HTML for task lists:
Inline HTML code: print(“Hello, world!”)
HTML code block:
print("Hello world")
Sometimes you want to hide content, like a code block, and reveal it
on request using a <details>
and
<summary>
combination:
<html>
<head>
<title>Hidden Code</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Creating a simple link in HTML:
Click here to visit Example.com.
Inserting an image in HTML:
Embedding a YouTube video:
Blockquotes in HTML:
A sample blockquote.
Spanning multiple lines.
Tables are easy to create and adjust in HTML:
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
Using HTML to create a grid layout:
/dev/nvme0n1p2
Creating simple forms and buttons in HTML:
In the final web this is not rendered. You can make the things do magic stuff with JS.
Using <pre>
tags for ASCII art:
╭─────────────────╮ │ MONOSPACE ROCKS │ ╰─────────────────╯
Use the <hr>
tag to create a horizontal rule:
EOF