-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (24 loc) · 1.1 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<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>Ping Pong</title>
<link rel="shortcut icon" href="images/favicon.svg" type="image/x-icon">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div>
<h1>Ping Pong</h1>
<img src="images/raquete.svg" alt="cobra" width="60px" style="position: relative;top: 2vh">
</div>
<button id="play" onclick="iniciarJogo()"><img src="images/play.png" alt="play" width="50px"></button>
<br>
<canvas width="1280" height="500"></canvas>
<div id="pontuacao">
<span id="jogador1" style="font-size: 15px; color: #bd5f24; position: relative; bottom: 0.5vh;"></span> <span style="color: #bd5f24;" id="pontos_raquete1"></span> : <span style="color: #356c8b;" id="pontos_raquete2"></span> <span id="jogador2" style="font-size: 15px; color: #356c8b; position: relative; bottom: 0.5vh;"></span>
</div>
<script src="js/funcoes.js"></script>
</body>
</html>