Reputation: 754
How do I use >
and <
in HTML?
Here is an example:
<h2>To put big text in HTML, use <h1>Your text</h1></h2>
Upvotes: 1
Views: 97
Reputation: 62536
You can use html entities:
<
>
<h1><some text></h1>
You can find the complete list of html entities here:
https://dev.w3.org/html5/html-author/charref
Upvotes: 1