-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (63 loc) · 2.82 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
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mapa do Acordeon Diatônico</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A reference map for diatonic accordion">
<meta name="author" content="Leandro Nunes">
<!-- Le styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="index.html"><img style="padding:0;" src="img/mini.png"> Mapa do Acordeon Diatônico</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="about.html">Sobre</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container" style="padding-top:20px">
<div class="row-fluid">
<p class="lead text-center">O <strong>Mapa do Acordeon Diatônico</strong> apresenta um formato simplificado para localização de teclas, acordes e escalas neste maravilhoso instrumento, também conhecido como <strong>Gaita Ponto, Gaita Botoneira, Pé-de-Bode</strong>, entre outros.</p>
</div>
<div class="row-fluid">
<div class="span6" style="text-align:center; padding-top:30px">
<img src="img/diatonic21.png">
</div>
<div class="span6">
<a href="diatonic21.html" class="span12 btn btn-large btn-primary" style="margin-top:50px">Acordes no teclado</a>
</div>
</div>
</div> <!-- /container -->
<footer style="text-align:center; padding-top:30px">
<p>Esta obra é distribuida sob uma Licença <a rel="license" href="http://creativecommons.org/licenses/by/3.0/br/deed.pt_BR">Creative Commons Atribuição 3.0 Brasil</a>.</p>
</footer>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap-dropdown.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4797390-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>