mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 00:38:26 +01:00
58 lines
No EOL
2 KiB
HTML
58 lines
No EOL
2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>HTML5 Tips and Tricks</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
|
|
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
|
|
</head>
|
|
<body>
|
|
<div class="demo">
|
|
<h1>My Favorite HTML5 Tips and Tricks</h1>
|
|
<ul class="list">
|
|
<li>
|
|
<a href='./details/index.html'>
|
|
Details Tag</a> - Specify details that the user can open and close on demand
|
|
</li>
|
|
<li>
|
|
<a href='./inputs/index.html'>
|
|
Inputs</a> - Various useful tips
|
|
</li>
|
|
<li>
|
|
<a href='./content-editable/index.html'>
|
|
Content Editable</a> - Make the content Editable
|
|
</li>
|
|
<li>
|
|
<a href='./mark/index.html'>
|
|
Mark Content</a> - Highlight things
|
|
</li>
|
|
<li>
|
|
<a href='./data-attribute/index.html'>
|
|
Custom Data</a> - Data with elements
|
|
</li>
|
|
<li>
|
|
<a href='./output/index.html'>
|
|
Output Tag</a> - To perform a calculation and show the result
|
|
</li>
|
|
<li>
|
|
<a href='./datalist/index.html'>
|
|
Datalist Tag</a> - Allows you to search and add elements
|
|
</li>
|
|
<li>
|
|
<a href='./range/index.html'>
|
|
Slider</a> - Do you need a range slider?
|
|
</li>
|
|
<li>
|
|
<a href='./map/index.html'>
|
|
Map</a> - Image map with coordinates
|
|
</li>
|
|
<li>
|
|
<a href='./meter/index.html'>
|
|
Meter</a> - Display a gauge
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html> |