BACK
|Nieuws
Chairs
Paragraphs are separated by a blank line.
The second paragraph. This is placeholder text that our web designers put here to make sure words appear properly on your website. Italic, bold, and monospace
.
Unordered lists:
- this one
- that one
- the other one
Ordered lists:
- first item
- second item
- third item
Block quotes are written like so.
They can span multiple paragraphs, if you like.
class View {
constructor() {}
// Create an element with an optional CSS class
createElement(tag, className) {
const element = document.createElement(tag)
if (className) element.classList.add(className)
return element
}
// Retrieve an element from the DOM
getElement(selector) {
const element = document.querySelector(selector)
return element
}
}