-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.4 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>rating systems</title>
<meta charset="utf-8">
<meta name="Author" content="Coen Filipsen">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Waarderingssysteem</h1>
<p>Click on the stars te give your rating </p>
<p>
<span data-role="1" class="stars"><span id="s1"></span></span>
<span data-role="2" class="stars"><span id="s2"></span></span>
<span data-role="3" class="stars"><span id="s3"></span></span>
<span data-role="4" class="stars"><span id="s4"></span></span>
<span data-role="5" class="stars"><span id="s5"></span></span>
</p>
<p>
Er is <span id="clicks"></span> keer geklikt.
<br /> De waardering is:<span id="stars"></span>
</p>
<p>
Deze sterretjes zijn gebruikt:
<img src="http://pngimg.com/upload/star_PNG1585.png" alt="leeg">
<img src="afbeeldingen/ster2.jpg" alt="vol">
<img src="http://www.clipartbest.com/cliparts/M9c/p9d/M9cp9dKTE.jpeg" alt="hover">
</p>
<script src="script.js"></script>
<div id="validation">
<a href="http://validator.w3.org/check?uri=referer" target="_blank">
<img src="http://blog.boyet.com/blog/files/media/image/valid-html5-blue.png" alt="Valide HTML5"></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img src="http://jigsaw.w3.org/css-validator/images/vcss-blue.gif" alt="Valide CSS">
</a>
</div>
</body>
</html>