-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideogame-page.html
48 lines (44 loc) · 2.24 KB
/
videogame-page.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./videogame-page.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Font Awesome 6 Pro:wght@400&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Plus Jakarta Sans:wght@400;700&display=swap" />
</head>
<body>
<!-- Header de la página de cursos -->
<nav class="nav-bar">
<a href="./home.html"><img src="/public/[email protected]" alt="logo-neoris"></a>
<ul class="nav-bar--lista">
<li class="nav-bar--middle"><a href="./home.html">Home</a></li>
<li class="nav-bar--middle"><a href="./videogame-page.html">Farm</a></li>
<li class="nav-bar--middle"><a href="./avatar.html">Perfil</a></li>
<li class="nav-bar--middle"><a href="./login.html">Cerrar Sesion</a></li>
</ul>
</nav>
<!-- Contenedor del juego de Unity -->
<!-- Contenedor del juego de Unity -->
<div class="videogame-container" style="display: flex; justify-content: center; align-items: center; height: 100vh;">
<iframe src="PoklimStudentv1/index.html" frameborder="0" style="width: 1000px; height: 70vh;"></iframe></div>
</div>
<!-- Footer de la página de cursos -->
<footer class="site-footer">
<div class="footer-content">
<img src="/public/[email protected]" alt="Logo Neoris" class="footer-logo">
<ul class="footer-links">
<li><a href="./home.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<p>© 2024 Neoris. All rights reserved.</p>
</div>
</footer>
</body>
</html>