html

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/75

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:41 PM on 11/9/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

76 Terms

1
New cards
<p>

paragraaf

<p>paragraaf </p>
2
New cards
<h1>...<h6>

titels

<p>titels </p>
3
New cards
<blockquote>

quote,pull quote

<p>quote,pull quote</p>
4
New cards
<address>

primaire contactinformatie

<p>primaire contactinformatie</p>
5
New cards
<ul>
   <li>...</li>
   <li>...</li>
</ul>

ongeordende lijst van gelijkaardige items (ook gebruikt voor menu's)

<p><span>ongeordende lijst van gelijkaardige items (ook gebruikt voor menu's)</span></p>
6
New cards
<ol>
   <li>...</li>
   <li>...</li>
</ol>

geordernde lijst van gelijkaardige items

<p>geordernde lijst van gelijkaardige items</p>
7
New cards
<dl>
   <dt>...</dt><dd>...</dd>
   <dt>...</dt><dd>...</dd>
</dl>

definitielijst met term/data paren

<p>definitielijst met term/data paren</p>
8
New cards
<table>
   <caption>...</caption>
   <colgroup>
      <col>
      <col span="2">
   </colgroup>
   <tr>
      <th scope="col">...</th>
      <th scope="col">...</th>
      <th scope="col">...</th>
   </tr>
   <tr>
      <td>...</td>
      <td>...</td>
      <td>...</td>
   </tr>
   <tr>
      <td>...</td>
      <td>...</td>
      <td>...</td>
   </tr>
</table>

basisstructuur tabel

9
New cards
<em>

nieuwe term, spreek trager uit

10
New cards
<strong>

belangrijke term, spreek luider uit

11
New cards
<small>

meestal in footer: "kleine lettertjes" (voorwaarden, copyright info...)

12
New cards
<sup>

superscript, b.v. m2

13
New cards
<sub>

subscript bv H20

14
New cards
<cite>

referentie naar een werk: schilderij, boek, publicatie...

15
New cards
<code>

code blok, b.v. in programmeerblogs

16
New cards
<abbr>

afkorting

17
New cards
<br>

line break

18
New cards
&lt; &gt; &copy; &mdash; ...

karakter entiteiten:

19
New cards
<a href="...">...</a>

hyperlink

20
New cards
<a href="..." title="...">...</a>

hyperlink met een beschrijving

21
New cards
<a href="mailto:...">...</a>

email link

22
New cards
<a href="tel:...">...</a>

telefoon of gsm link

23
New cards
<a href="#ref1">...</a>
<p id="ref1">...</p>

anker

24
New cards
<a href="">company name</a>
<a href=""><img src="img/logo.png" alt="logo"></a>

typische code voor logo

25
New cards
<ul>
   <li><a href="">home</a></li>
   <li><a href="">projects</a></li>
   <li><a href="">contact</a></li>
</ul>

typische code voor menu

26
New cards
<img src="..." alt="...">

image

27
New cards
<figure>
   <img src="..." alt="...">
   <img src="..." alt="...">
   <img src="..." alt="...">
   <figcaption>...</figcaption>
</figure>

one or more images with caption

28
New cards
<picture>
   <source media="..." srcset="...">
   <source media="..." srcset="...">
   <img src="..." alt="...">
</picture>

image with alternative sources

29
New cards
<audio src="tune.mp3">
   audio not supported
</audio

audio element

30
New cards
<audio src="tune.mp3">
   <source src="music.oga" type="audio/ogg">
   <source src="music.mp3" type="audio/mpeg">
</audio>

audio with alternative sources

31
New cards
<video src="myvideo.mp4">
   video not supported
</video>

video element

32
New cards
<video src="media/myvideo.mp4">
   <source src="video_small.mp4" type="video/mp4" media="handheld">
   <source src="video.mp4" type="video/mp4">
   <source src="video.ogv" type="video/ogg; codecs=theora, vorbis">
</video>

video with alternatieve sources

33
New cards
<!DOCTYPE html>

HTML document type

34
New cards
<html>

HTML document

35
New cards
<head>

invisible meta content

36
New cards
<title>

document title

37
New cards
<meta charset="utf-8">

UTF8 characterset declaration

38
New cards
<style>...</style>

internal stylesheet

39
New cards
<link rel="stylesheet" href="...">

linked stylesheet

40
New cards
<script></script>

internal script

41
New cards
<script src=""></script>

linked script

42
New cards
<head>

invisible meta content

43
New cards
<body>

visible content

44
New cards
<div>

blocklevel division (part of document)

45
New cards
<span>

inline span

46
New cards
<section>

groups a title and content

47
New cards
<nav>

main navigation block

48
New cards
<article>

self-contained independent content

49
New cards
<main>

main page content

50
New cards
<header>

introductory content

51
New cards
<aside>

related content

52
New cards
<footer>

closing content

53
New cards
<form action="...">...</form>

basic form

54
New cards
<div>
   <label for="inp1">...</label>
   <input id="inp1" type="...">
</div>

control group

55
New cards
<div>
   <label>...</label>
   <label><input type="checkbox"> option A</label>
   <label><input type="checkbox"> option B</label>
   <label><input type="checkbox"> option C</label>
</div

checkboxlist

56
New cards
<div>
   <label>...</label>
   <label><input name="grp1" type="radio"> option A</label>
   <label><input name="grp1" type="radio"> option B</label>
   <label><input name="grp1" type="radio"> option C</label>
</div>

radiobutton group

57
New cards
<input type="text">

text field

58
New cards
<textarea>...</textarea>

text area

59
New cards
<input type="passwoord">

password field

60
New cards
<input type="email">

email field

61
New cards
<input type="tel">

telephone field

62
New cards
<input type="url">

url field

63
New cards
<input type="date">

datapicker field

64
New cards
<input type="color">

colorpicker field

65
New cards
<input type="range" min="1" max="10">

slider field

66
New cards
<select>
   <option>value A</option>
   <option>value B</option>
   <option>value C</option>
</select>

dropdown list

67
New cards
<input type="submit" value="send">

submit button

68
New cards
<button type="submit">send</button>

submit button, alternative syntax

69
New cards
<input type="reset" value="clear form">

reset button

70
New cards
<input ... placeholder="...">

set watermark text

71
New cards
<input ... value="...">

set input value

72
New cards
<input ... disabled>

control is disabled

73
New cards
<input ... autofocus>

autofocus on this control

74
New cards
<input ... required>

value is requierd

75
New cards
<input type="radio" checked>
<input type="checkbox" checked>

radiobutton is aangevinkt

76
New cards
<option selected>...</option>

optie is aangevinkt