This commit is contained in:
Jibril Dauda Muhammad 2022-10-13 03:51:27 +01:00 committed by GitHub
commit 2f8d173d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 1 deletions

View File

@ -91,8 +91,12 @@
<a href='./lazy-loading/index.html'>
Lazy Loading</a> - Lazy Load html images natively
</li>
<li>
<a href='./word-break/index.html'>
Word Break Opportunity</a> - specifies where in a text it would be ok to add a line-break.
</li>
</ul>
</div>
</body>
</html>
</html>00

22
word-break/index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>HTML Tips and Tricks - Meter</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>
<h2> Word Break Opportunity tag </h2>
<p>HTML5 isamarkuplanguage<wbr>usedforstructuringandpresentingcontentontheWorldWideWeb<wbr>ItisthefifthandfinalmajorHTMLversion</p>
</div>
</body>
</html>