-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 3 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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VirtualSIC</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="hidden">
<div class="centrado" id="onload">
<div class="three-body">
<div class="three-body__dot"></div>
<div class="three-body__dot"></div>
<div class="three-body__dot"></div>
</div>
</div>
<nav class="navbar">
<div class="navbar-container">
<div class="logo">VirtualSic</div>
<ul class="nav-links">
<li><a href="/redes/redes.html">Contactenos</a></li>
<li><a href="/redes/nosotros/nosotros.html">Sobre nosotros</a></li>
<li><a href="/nuestros-proyectos">Nuestros proyectos</a></li>
</ul>
<a href="/iniciar-sesion" target="_blank" rel="noopener noreferrer" class="login-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<circle cx="12" cy="10" r="3"></circle>
<path d="M7 20.662V19c0-1.657 2.239-3 5-3s5 1.343 5 3v1.662"></path>
</svg>
</a>
</div>
</nav>
<main>
<section id="search">
<h2>BUSCA TU CANCIÓN</h2>
<div class="form-control">
<input type="value" required="" id="searchBox">
<label>
<span style="transition-delay:0ms">N</span><span style="transition-delay:50ms">o</span><span style="transition-delay:100ms">m</span><span style="transition-delay:150ms">b</span><span style="transition-delay:200ms">r</span><span style="transition-delay:250ms">e</span>
</label>
</div>
<button id="searchButton">Buscar</button>
</section>
<section id="results">
<h2></h2>
<div id="songList">
</div>
</section>
</main>
<footer>
<p>© 2024 VirtualSic. Web en desarrollo.</p>
</footer>
<section id="lyrics">
<div>
<h2>LETRAS</h2>
</div>
<div id="lyricsContent">
</div>
</section>
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<script src="/redes/script_redes.js"></script>
<script src="script.js"></script>
<script src="codigo.js"></script>
</body>
</html>