mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
30 lines
No EOL
1 KiB
HTML
30 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>HTML 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 HTML 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>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html> |