-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.09 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.09 KB
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
<!DOCTYPE HTML>
<html>
<head>
<script src="Random.js"></script>
<link rel="stylesheet" href="Random.css">
<meta name="viewport" content="width=device-width , initial-scale = 1.0">
<meta name="author" content="Yazan Barki Gharbi">
<meta name="keywords" content="random , zufällig , zufall , zufallsgenerator , randomnumber , zahl , zahlen ,
würfel , 1-10 , Buchstabe ">
<meta name="description" content="zufallsgenerator für Buchstaben, Zahlen von 1-10, Münzwurf und Würfeln">
<link rel="shortcut icon" href="e.ico" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" href = "e.png">
<link rel="icon" href="e.png" type="image/png">
</head>
<body>
<div class="he">
<button onclick="muenze()">Münzwurf</button>
<button onclick="z110() ">Zahl von 1-10</button>
<button onclick="wuerfel()">Würfel</button>
<button onclick="alphabet()">Alphabet</button>
</div>
<h1>Ergebnisse:</h1>
<h2>Münzwurf:</h2>
<div id="dig"></div>
<h2>Zahl von 1-10:</h2>
<div id="did"></div>
<h2>Würfel:</h2>
<div id="dit"></div>
<h2>Alphabet:</h2>
<div id="div"></div>
</div>
</body>
</html>