-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (65 loc) · 2.16 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
72
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aprende Guitarra</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #000000;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
h1 {
text-align: center;
color: #ffffff;
}
.links {
list-style-type: none;
padding: 0;
margin: 20px 0;
}
.links li {
margin-bottom: 10px;
}
.links a {
display: block;
background-color: #333333;
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.links a:hover {
background-color: #0056b3;
}
@media only screen and (max-width: 600px) {
.container {
padding: 0 10px;
}
}
</style>
<link rel="icon" href="./guitarFret/images/cropped-universoMini_logo3-1-32x32.png" sizes="32x32" />
<link rel="icon" href="./guitarFret/images/cropped-universoMini_logo3-1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="./guitarFret/images/cropped-universoMini_logo3-1-180x180.png" />
<meta name="msapplication-TileImage" content="./guitarFret/images/cropped-universoMini_logo3-1-270x270.png" />
</head>
<body>
<div class="container">
<h1>Aprende Guitarra</h1>
<ul class="links">
<li><a href="https://parencode.github.io/guitar/guitarFret/">Guitar Fret</a></li>
<li><a href="https://parencode.github.io/guitar/alphaTab-color/">AlphaTab Color</a></li>
<li><a href="https://parencode.github.io/guitar/guitarvideopull/">Guitar Video Pull</a></li>
<li><a href="https://parencode.github.io/guitar/guitarTutorial/referencias">Referencias</a></li>
</ul>
</div>
</body>
</html>