HTML Flashcards

1
Q

What is HTML?

A

One of the three coding languages used to design websites. Stands for Hyper Text Marking Language.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you create lists in HTML?

A
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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you emphasise text in HTML?

A

Bold: <b> </b> or <strong> </strong>
Italic: <em> </em>
Underline: <u> </u>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the format for inserting images in HTML?

A

<img></img>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the format for inserting links in HTML?

A

<a> insert photo or text here </a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the components of building a table in HTML?

A

Table row:
Table headers:
Table data:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you change the appearance of a table in HTML?

A
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 {.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly