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
<!-- Created by Bob_Li -->
<!-- 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">
<p id="gun">
🔫</button>
</p>
<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>
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
17
18
19
20
21
22
23
24
25
26
27
28
/* Created by Bob_Li */
/* from code created by Pro Gamer 12 Nobody */
body {
font-family: Arial, sans-serif;
background-color: #e0e0e0;
display: flex;
flex-direction: column;
justify-content: center;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
h1,h2,h3 {
text-align:center;
}
button {
width:5rem;
height: 5rem;
background-color: #e0e0e0;
border-radius: 50%;
box-shadow: 8px 8px 15px #bebebe,
-8px -8px 15px #ffffff;
color: #333;
font-size: 16px;
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
// Created by Bob_Li
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run