html Flashcards
Hva begynner alle html filer med?
1.
<!DOCTYPE HTML>
2.
- <HTML>
- <HEAD>
- <BODY>
Hvordan koble opp mot CSS fil?
- <LINK rel= «stylesheet» Href= «___»
Hvordan lage en overskrift og hvilken deler skal være hvor?
- Alt skal være på innsiden av <head> som vi har laget allerede
- <h1>
</h1>
Hvordan lage forskjellige tekst typer/størrelser
- <h1>
</h1> - <h2>
</h2> - <h3>
</h3> - <p>
</p> - <br></br>
- <em></em>
- <i></i>
Hvordan lage forskjellige skrift typer
- <b> (bold)</b>
- <i> (italic)</i>
- <strong></strong>
- <mark> (markeringstusj)</mark>
- <del></del>
- <ins></ins>
Hvordan lage lister
- <li> (with either «ul» or “ol”
</li>
Hvordan legge til lenke på tekst
<a href=»url»>link text</a>
Hvordan legge til bilde
- <img src=»____»>
- <img src=»____» alt=»description of image»>
- <img src=»____» width =»500» height=»800»>
Hvordan lage Table
- <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>
Hvordan legge til kommentar
- <!– tekst – >
What is the difference between Inline, Internal and External CSS? Also what is the “order of operations”?
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.
What elements do not need closing tags?
Img,link, input,
What is in benyon’s design principles:
Learnability 1-4 (vcfa)
Visibility
Consistency
Familiarity
Affordance
What is in benyon’s design Effectiveness:
Learnability 5-9 (ncfrc)
Navigation
Control
Feedback
Recovery
Constraints
What is in benyon’s design principles:
Learnability 10-12 (fsc)
Flexibility
Style
Conviviality