Multiple choice technology web technology

How do you define font style of the text?

  1. <style="Arial">

  2. <text=Arial>

  3. <font style="Arial"></font>

  4. <text style="Arial">

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The tag with a `style` attribute is used to define font styles in HTML, as shown in option C. The syntax sets the font face (though modern practice prefers CSS). Options A, B, and D are not valid HTML - they use incorrect tag names or attribute syntax.