What is HTML?
One of the three coding languages used to design websites. Stands for Hyper Text Marking Language.
How do you create lists in HTML?
Ordered lists (1,2,3...): <ol> </ol> Unordered lists (bullet points): <ul> </ul> Description lists (descriptions): <dl> </dl>
For both ordered and unordered lists, to create a list item you must use <li> </li>
For description lists, the subject being described must be in <dt> </dt> and the description in <dd> </dd>
How do you emphasise text in HTML?
Bold: <b> </b> or <strong> </strong>
Italic: <em> </em>
Underline: <u> </u>
What is the format for inserting images in HTML?
<img></img>
What is the format for inserting links in HTML?
<a> insert photo or text here </a>
What are the components of building a table in HTML?
Table row:
Table headers:
Table data:
How do you change the appearance of a table in HTML?
border-style: (dotted/dashed/solid...); border-color: (HEX color); background-color: (HEX color); border: (pixels); border-collapse: (separate/collapse);
Remember to start and end the information with and .
Write to what features this information applies to at the top before opening {.