-
Notifications
You must be signed in to change notification settings - Fork 0
/
russian.html
37 lines (32 loc) · 1.08 KB
/
russian.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luis Schuster</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="preload" href="/css/russian.css" as="style">
<link rel="preload" href="/css/fonts.css" as="style">
<link rel="stylesheet" href="/css/russian.css">
<link rel="stylesheet" href="/css/fonts.css">
</head>
<body>
<h1>Russian Roulette</h1>
<div id="game-div">
<p>I want to pull the trigger</p>
<select name="operations" id="operations">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
<p>times.</p>
</div>
<div id="result-div">
<button id="button">Shoot!</button>
</div>
<script src="/js/russian.js"></script>
</body>
</html>