-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.17 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
64
65
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="src/styles/reset.css">
<link rel="stylesheet" href="src/styles/style.css">
<link rel="shortcut icon" href="src/images/icon.ico" type="image/x-icon">
<title>Bit Pixel Games</title>
</head>
<body>
<header>
<nav>
<img src="src/images/logo.png" alt="" id="logo">
<li><input type="text" placeholder=" Pesquise algo" id="input"></li>
</nav>
</header>
<main>
<section id="game-session">
<div class="game-card">
<a href="src/games/Pong.html">
<img src="src/images/Pong.png" alt="Game Pong">
</a>
</div>
<div class="game-card">
<a href="src/games/Breakout.html">
<img src="src/images/breakout.png" alt="Game Breakout">
</a>
</div>
<div class="game-card">
<a href="src/games/Ache-O-Anel.html">
<img src="src/images/Ache-o-anel.png" alt="Game Ache o Anel">
</a>
</div>
<div class="game-card">
<a href="src/games/Magia.html">
<img src="src/images/Magia.png" alt="Game Magia">
</a>
</div>
<div class="game-card">
<a href="src/games/BitJigsaw.html">
<img src="src/images/BitJigsaw.png" alt="Game BitJigsaw">
</a>
</div>
</section>
</main>
<footer>
<div >
<p>© 2025 Abel Lucas. Todos os direitos reservados.</p>
<div>
<a href="https://www.instagram.com/abelarduu" target="_blank">Instagram</a> |
<a href="https://br.pinterest.com/BitPixelGame/" target="_blank">Pinterest</a> |
<a href="https://www.linkedin.com/in/abel-lucas" target="_blank">LinkedIn</a> |
<a href="https://www.behance.net/abellucas1" target="_blank">Behance</a> |
<a href="https://github.com/abelarduu" target="_blank">GitHub</a>
</div>
</div>
</footer>
</body>
</html>