RemainAnon
Junior Member
When you first start using HTML, the first things you want to learn is how to start customizing the text on your webpage. These are handy to make things stand out more than others, or just to put emphasis on a certain point.
Firstly, to make your text bold in HTML, you do:
Which would look like this:
insert text here
Secondly, to make your text italic, you do:
Which would then look like this:
insert text here
Finally, to underline your text, do the following:
Which would look as follows:
insert text here
Firstly, to make your text bold in HTML, you do:
HTML:
<b>insert text here</b>
Which would look like this:
insert text here
Secondly, to make your text italic, you do:
HTML:
<i>insert text here</i>
Which would then look like this:
insert text here
Finally, to underline your text, do the following:
HTML:
<u>insert text here</u>
Which would look as follows:
insert text here