How i can add a H tag to this List Item, I Want H4

Viewed 22

I am using this code, I want to add an H tag for example H6 to this code properly

<li><a class="classname" href="#" aria-current="true"target="_blank" rel="noreferrer noopener">Write Title Here</a></li>
1 Answers

Use either inline CSS or a separate CSS using an id id="__" to connect, and change that font size of the text you want for example style="font-size:50px;". Or you can use h4 tags within the list <li><a class="classname" href="#" aria-current="true"target="_blank" rel="noreferrer noopener"> <h4>Write Title Here</h4> </a></li>.

Related