Emphasis is marked with <em> or <strong>
Normal emphasis is equivalent to italics and is marked with the <em> tag. Strong emphasis, using the <strong> tag, is also available but is less often necessary.
Bullet-point lists are marked with <ul> and <li>
The <ul> tag is used in place of a paragraph, to mark the beginning and end of a bulleted list. Within the list are one or more <li> tags that contain each list item.
Links within pages use name attribute and #
Creating links within a page is a two-step process.
- First, the target of the link must be marked with the <a name="name"> tag.
- Second, the link is created using <a href="#name">. If the link is to a section within another HTML page, then the address of that page must be given before the # in the normal way.