๐Ÿ“ฆ yochem / omhp.nl

๐Ÿ“„ index.html ยท 47 lines
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47<!doctype html>
<html lang="nl">
  <head>
    <title>Weektaken OMHP</title>
    <link rel="stylesheet" href="style.css" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    <meta name="robots" content="noindex" />
    <script src="script.js" defer></script>
  </head>
  <body>
    <header>
      <h1><a href="index.html">Weektaak OMHP</a></h1>
      <nav>
        <a id="prevWeek" class="navButton">&#8249;</a>
        <p id="weeknumber"></p>
        <a id="nextWeek" class="navButton">&#8250;</a>
      </nav>
    </header>

    <main>
      <section>
        <h2>Keuken</h2>
        <p id="kitchen"></p>
      </section>

      <section>
        <h2>Wc's</h2>
        <p id="toilet"></p>
      </section>

      <section>
        <h2>Douches</h2>
        <p id="shower"></p>
      </section>

      <section>
        <h2>Badkamer boven</h2>
        <p id="upstairs"></p>
      </section>
    </main>

    <footer>
      <a href="persoonlijk.html">Bekijk jouw persoonlijke weektaken</a>
    </footer>
  </body>
</html>