-
Notifications
You must be signed in to change notification settings - Fork 0
/
gameStone.php
33 lines (33 loc) · 1.05 KB
/
gameStone.php
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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assetst/reset.css">
<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="assets/style.css">
<title>Игра ЮЗФ</title>
</head>
<body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<div>
<form name="form1" method="post" action="scriptGame.php">
<h3>Game JuZeFa for webdesign</h3>
<hr size="1">
<p>Выбираем вариант:</p>
<p>
<br>
<select name=variant size=1>
<option value=1>Ножницы</option>
<option value=2>Бумага</option>
<option value=3 selected>Колодец</option>
</select>
</p>
<br>
<p>
<input type="submit" value="Отослать форму">
 <input type="reset" value="Очистить форму">
</p>
</form>
</div>
</body>
</html>