-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameForm .htm
34 lines (34 loc) · 1.09 KB
/
GameForm .htm
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
<html>
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="stylesheet" href="assetst/reset.css">
<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
<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>
<!--<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>-->
</html>