Multiple choice

HTML tags are enclosed by

  1. { }

  2. ( )

  3. < >

  4. [ ]

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

HTML tags are enclosed in angle brackets: < and >. This syntax is fundamental to HTML and comes from SGML (Standard Generalized Markup Language). For example,

is a paragraph tag. Curly braces {}, parentheses (), and square brackets [] are used for other purposes in programming but not for HTML tags.