Skip to content

Commit

Permalink
Replace two HTML tags with one (with better semantics) (#2842)
Browse files Browse the repository at this point in the history
* Replace two HTML tags with one (with better semantics)

* trying to fix lint issue

* trying to fix lint

---------

Co-authored-by: Estelle Weyl <[email protected]>
  • Loading branch information
dragunovartem99 and estelle authored Sep 17, 2024
1 parent 0d53f5b commit 1c31eed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
<p>
If you need to relax, press the <strong><u>S</u></strong
>tress reliever!
</p>

<p>If you need to relax, press the <b>S</b>tress reliever!</p>
<button accesskey="s">Stress reliever</button>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
b {
font-weight: bold;
text-decoration: underline;
}

0 comments on commit 1c31eed

Please sign in to comment.