Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,12 @@ <h1>HTML5 Feature Tips</h1>
<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 changes: 22 additions & 0 deletions word-break/index.html
Original file line number Diff line number Diff line change
@@ -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>