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">
Again!!!</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
17
18
19
20
21
22
23
24
25
26
27
28
/* 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:fit-content;
height:50px;
background-color: #e0e0e0;
border-radius: 15px;
box-shadow: 8px 8px 15px #bebebe,
-8px -8px 15px #ffffff;
color: #333;
font-size: 16px;
padding: 10px 20px;
margin: auto;
border: none;
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run