mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
Added the abbreviation tag feature
This commit is contained in:
parent
f478ca2c9d
commit
4e9291e11d
3 changed files with 41 additions and 0 deletions
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"liveServer.settings.port": 5501
|
||||||
|
}
|
34
abbreviation/index.html
Normal file
34
abbreviation/index.html
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta charset='utf-8'>
|
||||||
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||||
|
<title>HTML Tips and Tricks - Abbreviation</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">
|
||||||
|
<a href="../index.html" class="home">
|
||||||
|
<img src="../home.svg" alt="home" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<h1>The abbr tag</h1>
|
||||||
|
<h4>hover your mouse over the HTML for the full form</h4>
|
||||||
|
|
||||||
|
<p> <abbr title=" HyperText Markup Language ">HTML</abbr> is the standard markup language for Web pages.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,10 @@
|
||||||
<a href='./iframe/index.html'>
|
<a href='./iframe/index.html'>
|
||||||
Iframe</a> - Embed YouTube Videos
|
Iframe</a> - Embed YouTube Videos
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href ='./abbreviation/index.html'>
|
||||||
|
Abbreviation </a> - Allows you to see the description of an abbreviation when mouse hovers above it.
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue