30 lines
797 B
HTML
30 lines
797 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>
|
|
.choose {
|
|
margin: 20px;
|
|
padding: 20px;
|
|
border: 2px solid #000;
|
|
border-radius: 35px;
|
|
background-color: #444;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: xx-large;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button class="choose" value="rock">Rock</button>
|
|
<button class="choose" value="paper">Paper</button>
|
|
<button class="choose" value="scissors">Scissors</button>
|
|
<div id="result">
|
|
Result:
|
|
</div>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |