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 - Mark Element</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>Mark something to Highlight</h1>
|
|
<p> Did you know, you can <mark>"Highlight something interesting"</mark> just with a HTML tag? </p>
|
|
<br>
|
|
<details>
|
|
<summary>see code:</summary>
|
|
<p>
|
|
The code to implement this HIGHLIGHTED content is as below:<br>
|
|
<img src="../code-example-images/mark.png" alt="couldn't load image"/>
|
|
</p>
|
|
</details>
|
|
</div>
|
|
</body>
|
|
</html> |