-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.61 KB
/
index.html
File metadata and controls
47 lines (35 loc) · 1.61 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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Problem Solver by Sofia</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>Zsófi megoldás generáló</h1>
<p>Ez az alkalmazás tanulási célokat szolgál és Zsófi trollkodását.</p>
<form id="form">
<label for="problem">Probléma okozója:</label>
<select id="problem" name="problem" required>
<option value="0" disabled selected>Ki okozta a problémát?</option>
<option value="1">Én (Zsófi)</option>
<option value="2">Viktor</option>
<option value="3">Nem tudom sajnos</option>
</select>
<label for="difficulty">Probléma megoldási nehézsége:</label>
<input id="difficulty" type="number" min="0" max="10" name="difficulty" placeholder="0 - 10" required>
<label for="energy">Megoldási kedv:</label>
<select id="energy" name="result">
<option value="0" disabled selected>Hogy áll a munkakedved?</option>
<option value="3">Semmi</option>
<option value="2">Egy kicsi</option>
<option value="1">Talán meg tudnám oldani magamtól is</option>
</select>
<button type="button" id="submitBtn">Probléma megoldása</button>
</form>
<div id="result"></div>
</body>
<script src="./script.js"></script>
</html>
<footer>Ez az oldal semmilyen adatot sem gyüjt, a megadott értékek sincsenek tárolva.</footer>