30 lines
808 B
HTML
30 lines
808 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rock Paper Scissors</title>
|
|
<style>
|
|
button {
|
|
margin: 50px;
|
|
position: absolute;
|
|
top: calc(50% - 50px);
|
|
left: calc(50% - 50px);
|
|
padding: 20px;
|
|
border: 2px solid #000;
|
|
border-radius: 35px;
|
|
background-color: #444;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: xx-large;
|
|
cursor: pointer;
|
|
transform: translate(-50%, -50%);
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button onclick="game(this)">Start<br>game</button>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |