Is there an Appendix?

Hello,

Just starting the free code camp… I was wondering if there was an appendix I could use as in often cases I am stuck on the steps just from a lack of a description for the words/acronyms used in the tasks. ie, <li> <h1> etc… are there defined sets of these letters that is used in all html code or do you make them up as you go along? I mainly ask because I just used <li> and BOOM, bullet points! does <li> always create a bullet point?

MDN has a lot of information.

<li> is a list item element.

<h1> is a heading level 1 element.

It is the parent list element that determines which symbol is used for the list items. <ul> is an unordered list and uses the dot by default. <ol> is an ordered list and uses numbers.


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

2 Likes
<p>Thank you! </p>

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.