generated from fdnd/subtask
-
Notifications
You must be signed in to change notification settings - Fork 51
/
switch.html
29 lines (25 loc) · 941 Bytes
/
switch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Switch control / Progressive Enhancement / FDND</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link href="assets/styles.css" rel="stylesheet">
<style>
/* Schrijf hier gewoon je CSS voor dit component */
/* Hint: Dit component kun je volledig met HTML en CSS bouwen */
/* Hint: Hoe ver ga je qua styling? Vraag jezelf dit altijd af */
</style>
</head>
<body>
<h1>Switch control</h1>
<!-- Hint: Op het WebKit blog stond hierover vorige maand een goed artikel -->
<details open>
<summary>Demo video</summary>
<video src="assets/switch.mp4" width="119" height="67" controls muted autoplay loop>
<a href="assets/switch.mp4">assets/switch.mp4</a>
</video>
</details>
</body>
</html>