How to add a radio button in HTML
how to add a radio button in html problem You’re learning HTML and wish to use the radio button for the user to click and select an option. In this post we will see how to place a few buttons. SOLUTION Using the <input> tag with attribute type=”radio”. It is called a radio button because […]
How to make text underlined in HTML
How to make text underlined in HTML problem You wish to make some text appear in underlined format. In this post we will see how to do that using HTML tags. SOLUTION We can use the Underline tag <u>. It has an opening and a closing tag for us to enclose the text we wish […]
How to make text Italic in HTML
How to make text Italic in HTML problem You’re learning HTML and wish to format some text into Italic. In this post we will see two ways to do this. SOLUTION 1 Using the Italic <i> tag. This tag has an opening and a closing tag. For example, if we want to make a line […]
How to make text bold in HTML
How to make text bold in HTML problem You’re learning how to create webpages with HTML and wish to add some bold formatting on the text appearing on the screen. In this post we will see two ways to accomplish this. SOLUTION Using the <b> tag. Let’s say we have a line of text and […]