-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 3.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="shortcut icon" href="./src/images/icons8_video_game.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<meta name="description" content="Site com jogo desenvolvido utilizadno canvas">
<link rel="stylesheet" href="./src/styles/home.css">
<link rel="stylesheet" href="./src/styles/carrocel.css">
<title>Jogo como Canvas - Thiago Gomes [HOME]</title>
</head>
<body>
<section id="home">
<nav id="menu">
<div id="menuSideA">
<h1>FLAP-FEI</h1>
<span>Desenvolvido por Thiago Gomes</span>
</div>
<div id="menuSideB">
<ul>
<li><a id="itemA" href="./index.html">HOME</a></li>
<li><a id="itemB" href="./src/pages/sobre/index.html">SOBRE</a></li>
<li><a id="itemC" href="./src/pages/jogo/index.html">FLAP-FEI</a></li>
</ul>
</div>
</nav>
<div id="menuContext">
<section id="carrocel">
<div id="card">
<h1>FLAP-FEI</h1>
<p>Treine suas habilidades voando com o fei-bird em um cenário com obstaculos gerados aleatóriamente pelo jogo. Dados como, seu histórico de partidas e de melhor pontuação não são armazenados em local algum.🙂</p>
<button id="jogoButton" onclick="location.href = './src/pages/jogo/';">JOGAR</button>
</div>
</section>
<section id="contextB">
<div id="subCard">
<img src="./src/images/icons8_goal_128px.png" alt="">
<h3>OBJETIVO</h3>
<p>Desenvolver um jogo original, utilizando todos os <span>conhecimentos adiquiridos em sala</span>.</p>
</div>
<div id="subCard">
<img src="./src/images/icons8_code_128px_1.png" alt="">
<h3>DESENVOLVIMENTO</h3>
<p>Tecnologias utilizadas neste projeto foram <span>HTML</span>, <span>CSS</span>, <span>JS</span>.</p>
</div>
<div id="subCard">
<img src="./src/images/icons8_game_controller_100px.png" alt="">
<h3>SOBRE O GAME</h3>
<p>Testes suas <span>habilidades</span> com o teclado e veja se seu <span>reflexo</span> esta em dia. No <span>FLAP-FEI</span> você consegue quebrar seus <span>records</span> e <span>melhorar</span> cada vez mais.</p>
</div>
</section>
</div>
</section>
<script src="./src/animations/_currentPage.js"></script>
</body>
</html>