html
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
<!-- from code created by Pro Gamer 12 Nobody -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2 class="sig">
Impossible to get over 100</h2>
<h3>
High Score: <span id="hiscore">0</span></h3>
<button onclick="btnRouleteYou()" id="getOut">
Shoot Yourself</button>
<h3 id="r">Round: <span id="round">1</span></h3>
<h1 id="life"></h1>
<h3 id="count"></h3>
<button onclick="reset()" id="reset">
Reset</button>
<script>
let hiScore = 0;
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* from code created by Pro Gamer 12 Nobody */
button {
background-color: lightBlue;
width:375px;
height:50px;
border-radius:15px;
}
h1,h2,h3 {
text-align:center;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run