18 lines
536 B
HTML
18 lines
536 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rock Paper Scissors</title>
|
|
|
|
</head>
|
|
<body>
|
|
<button data-word="rock" class="btn">Rock</button>
|
|
<button data-word="paper" class="btn">Paper</button>
|
|
<button data-word="scissors" class="btn">Scissors</button>
|
|
<div id="content"></div>
|
|
<div id="result"></div>
|
|
</body>
|
|
<script src="script.js"></script>
|
|
</html> |