html Flashcards

1
Q

Hva begynner alle html filer med?

A

1.
<!DOCTYPE HTML>
2.
- <HTML>
- <HEAD>
- <BODY>

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

Hvordan koble opp mot CSS fil?

A
  • <LINK rel= «stylesheet» Href= «___»
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Hvordan lage en overskrift og hvilken deler skal være hvor?

A
  • Alt skal være på innsiden av <head> som vi har laget allerede
  • <h1>
    </h1>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Hvordan lage forskjellige tekst typer/størrelser

A
  • <h1>
    </h1>
  • <h2>
    </h2>
  • <h3>
    </h3>
  • <p>
    </p>
  • <br></br>
  • <em></em>
  • <i></i>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Hvordan lage forskjellige skrift typer

A
  • <b> (bold)</b>
  • <i> (italic)</i>
  • <strong></strong>
  • <mark> (markeringstusj)</mark>
  • <del></del>
  • <ins></ins>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Hvordan lage lister

A
  • <li> (with either «ul» or “ol”
    </li>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Hvordan legge til lenke på tekst

A

<a href=»url»>link text</a>

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

Hvordan legge til bilde

A
  • <img src=»____»>
  • <img src=»____» alt=»description of image»>
  • <img src=»____» width =»500» height=»800»>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Hvordan lage Table

A
  • <table>
    </table>
  • <tr>
    </tr>
  • <td>

    </td>

<table>
<tr>
<td> example 1<td>
<td> example 2<td>
<td> example 3<td>
</tr>
</table>
</td></td></td></td></td></td></tr></table>

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

Hvordan legge til kommentar

A
  • <!– tekst – >
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the difference between Inline, Internal and External CSS? Also what is the “order of operations”?

A

Order goes: Inline, Internal, External

Inline:
- Written straight into the code for a spesific element.

Internal:
- Suitable for a singular web page into the head section.

External:
- Suitable for multiple web pages.

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

What elements do not need closing tags?

A

Img,link, input,

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

What is in benyon’s design principles:
Learnability 1-4 (vcfa)

A

Visibility
Consistency
Familiarity
Affordance

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

What is in benyon’s design Effectiveness:
Learnability 5-9 (ncfrc)

A

Navigation
Control
Feedback
Recovery
Constraints

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

What is in benyon’s design principles:
Learnability 10-12 (fsc)

A

Flexibility
Style
Conviviality

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