-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtmlPage.html
More file actions
67 lines (64 loc) · 2.78 KB
/
HtmlPage.html
File metadata and controls
67 lines (64 loc) · 2.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="JavaScript.js"></script>
<link href="StyleSheet.css" rel="stylesheet" />
</head>
<body onload="start()" dir="rtl" onunload="saveGame()">
<div class="radioAreaBackgraund">
<div class="radioArea">
<div class="rightRadio">
<input type="radio" id="rate1" name="rate" value="rate1" checked="checked" />מתחיל<br />
<input type="radio" id="rate2" name="rate" value="rate2" />בינוני<br />
<input type="radio" id="rate3" name="rate" value="rate3" />מתקדם<br />
</div>
<div class="leftRadio">
<input type="radio" id="rate4" name="rate" value="rate4" />מומחה<br />
<input type="radio" id="rate5" name="rate" value="rate5" />אלוף<br />
<input type="radio" id="rate6" name="rate" value="rate6" />מהירות עולה<br />
</div>
<button class="btnNewGame" onclick="rating()">משחק חדש</button>
<button class="btnConGame" onclick="conGame()">ביטול</button>
</div>
</div>
<div class="radioAreaBackgraund">
<div class="radioArea">
<div class="radioLevel">
<input type="radio" id="l1" name="radioLevel" value="l1" checked="checked" />רמה א<br />
<input type="radio" id="l2" name="radioLevel" value="l2" />רמה ב<br />
<input type="radio" id="l3" name="radioLevel" value="l3" />רמה ג<br />
</div>
<button class="btnConGame" onclick="conGame()">ביטול</button>
<button class="btnNewGame" onclick="changeLevel()">משחק חדש</button>
</div>
</div>
<div id="warpper">
<img id="background" src="image/b4.png" />
<nav id="BoardMenu" class="menu" onmouseleave="closeNav()">
<div id="openBoardMenu" onmouseover="openNav()"></div>
<a href="openPage.html">חזור לדף הבית</a>
<label onclick="startNewGame()">משחק חדש</label>
<label onclick="showRadio()">בחר מהירות</label>
<label onclick="showLevelRadio()">בחר רמה</label>
</nav>
<div id="gameArea">
<table id="board"></table>
<div>
<fieldset>
<legend></legend>
</fieldset>
<fieldset>
<legend>your score</legend>
<div id="score"></div>
</fieldset>
<fieldset>
<legend>speed</legend>
<div id="speedLevel"></div>
</fieldset>
</div>
</div>
</div>
</body>
</html>