-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (19 loc) · 902 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prueba Nav bar</title>
<link rel="stylesheet" href="estilos.css">
<script src="comportamiento.js"></script>
</head>
<body>
<nav id="nav">
<p id="0" style="border-radius: 0px 30px 30px 0px;">LOGO</p>
<button value="#06b4ec" class="italic" onclick="efecto(this.id)" style="background-color: #06b4ec;" id="1">NOSOTROS</button>
<button value="#e4e2ea" class="bold" onclick="efecto(this.id)" style="border-radius: 30px 0px 0px 30px;" id="2">NUESTRA PROPUESTA</button>
<button value="#28282c" class="bold" onclick="efecto(this.id)" id="3">DÓNDE INVIERTO</button>
<button value="#f2ab5b" class="bold" onclick="efecto(this.id)" id="4">CONTACTO</button>
</nav>
</body>
</html>