-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (60 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Simon Pineda">
<meta name="Copyright" content="Copyright ©SimonPine 2022">
<meta charset="UTF-8">
<title>PiviGames - Home</title>
<link rel="shortcut icon" href="./img/logo.svg">
<link rel="stylesheet" type="text/css" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="bg">
<nav class="navHome">
<!-- <a class="logoNav" href="./index.html"><img class="logoNav" alt="logo" src="./img/logo1.svg"></a> -->
<ul class="ul1">
<li>
<a class="initialButtons" id="pongButton" href="./html/pong.html">Pong</a>
</li>
<li>
<a class="initialButtons" id="pacButton" href="./html/pacman.html">Pacman</a>
</li>
<li>
<a class="initialButtons" id="flapyButton" href="./html/flapyBird.html">Flappy Bird</a>
</li>
</ul>
<ul class="ul2">
<li>
<a class="initialButtons" id="snakeButton" href="./html/snake.html">Snake</a>
</li>
<li>
<a class="initialButtons" id="teButton" href="./html/tetris.html">Tetris</a>
</li>
<li>
<a class="initialButtons" id="spaceButton" href="./html/spaceInvader.html">Space Invaders</a>
</li>
</ul>
</nav>
<div class="caption">
<h2>Simon Pine</h2>
<div class="logos">
<a href="https://www.instagram.com/simonpineda0521/" target="_blank">
<img src="./img/insta.png" alt="instagram logo">
</a>
<a href="https://github.com/simonpine" target="_blank">
<img src="./img/facebook.png" alt="facebook logo">
</a>
<a href="https://twitter.com/SimonPine2" target="_blank">
<img src="./img/twitter.png" alt="twitter logo">
</a>
<a href="https://simonpine.com" target="_blank">
<img src="./img/logo1.svg" alt="twitter logo">
</a>
</div>
</div>
<div class="info">
</div>
<script type="module" src="./js/bg.js"></script>
<script type="module" src="./js/main2.js"></script>
</body>
</html>