-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.41 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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!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" />
<link rel="stylesheet" href="assets/css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="icon" type="image/png" href="assets/img/icon.png" />
<title>Forca - Menu</title>
</head>
<body>
<svg viewBox="0 0 500 150">
<path
id="curve"
d="M73.2,148.6c4-6.1,65.5-96.8,178.6-95.6c111.3,1.2,170.8,90.3,175.1,97"
/>
<text>
<textPath xlink:href="#curve">Batalha Davy Back</textPath>
</text>
</svg>
<h2>Jogo da Forca</h2>
<div id="menu">
<a href="assets/html/game.html" id="to-game" class="buttons">
Novo Jogo
</a>
<a href="assets/html/new.html" class="buttons"> Nova Palavra </a>
<label for="dificult"></label>
<select id="dificult">
<option>Fácil</option>
<option selected>Médio</option>
<option>Difícil</option>
</select>
</div>
<script src="assets/js/index.js"></script>
</body>
</html>