+ 2
How can I write a tag <> inside paragraphe in HTML5 ?
For example <p> There are three supported file format for the <audio> ekement: MP3, WAV and OGG. </p>
4 Antworten
+ 5
You mean like this?
<p>
There are ... <audio> ...
</p>
+ 4
Use < for < and > for >
More symbols here:
https://www.w3schools.com/charsets/ref_html_entities_d.asp
+ 2
Thank you lpang
- 4
first we open the sharp bracket <
then p then close it
<p>
and all the content of p will be after the>
and finally close it with </p>.....
note that some elements have no ending tag😁