-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnavegacion.php
39 lines (35 loc) · 1.44 KB
/
navegacion.php
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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Inicio</title>
<?php include_once("headComun.php"); ?>
<link rel="stylesheet" type="text/css" href="css/navegacion.css">
<script type="text/javascript" src="js/codigoJS.js"></script>
</head>
<body>
<?php include_once("fondo.php"); ?>
<div class="topnav" id="myTopnav">
<a href="index.php"><img id="imglogo" src="images/logo.png" alt="Logo"></a>
<br><a href="jugadores.php">Jugadores</a>
<a href="eleccionEstadisticas.php">Resultados</a>
<a href="misSeguimientos.php">Mis Seguimientos</a>
<a href="sobrenosotros.php">Sobre Nosotros</a>
<a href="perfil.php">Perfil</a>
<a href="desconexion.php">Desconectar</a>
<div class="dropdown">
<button class="dropbtn">Nuestras Redes
</button>
<div class="dropdown-content">
<a href="https://www.instagram.com/udcesports/" target="_blank">
<img id="imgIg" src="images/insta.png" alt="Icono Instagram">   Instagram   </a>
<a href="https://www.twitch.tv/udconstantinaesports/" target="_blank">
<img id="imgTwitch" src="images/twich.png" alt="Icono Twitch">   Twitch   </a>
<a href="https://twitter.com/udcesports?lang=es" target="_blank">
<img id="imgTwitter" src="images/twitter.png" alt="Icono Twitter">  Twitter   </a>
</div>
</div>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
<br><br><br><br>
</body>
</html>