write the syntax files of html with an example: bold tag ?
Answers
Answered by
0
Answer:
HTML is using tags for its syntax. A tag is composed with special characters: <, > and /. They are interpreted by softwares to compose an HTML element.
...
Tag syntax
it starts with <
then a list of characters without space, the tagname (or element)
ends usually with a >.
example of bold tag.... If you want to write a heading, you must use the header tag <h1> to <h6>. ... </strong> tag, and the text you want to mark or highlight, must be put within <mark>... </mark> tag. There is also a CSS 'font-weight' property to set bold text.
Similar questions