-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adicionado versão para impressão, mas não é possível imprimir uma var…
…ição escolhida
- Loading branch information
Showing
5 changed files
with
175 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DirectoryIndex index.html index.htm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | ||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | ||
|
||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-BR" lang="pt-BR"> | ||
|
||
<head> | ||
<title>Acordes</title> | ||
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="Content-Style-Type" content="text/css" /> | ||
<meta http-equiv="Content-Language" content="pt-BR" /> | ||
|
||
<meta name="author" content="Leandro Nascimento Camargo" /> | ||
|
||
<link href="css/acordes.css" media="all" rel="stylesheet" type="text/css" /> | ||
<script language="JavaScript" type="text/javascript" src="javascript/jquery-1.2.1.pack.js"></script> | ||
<script language="JavaScript" type="text/javascript" src="javascript/drag.js"></script> | ||
<script language="JavaScript" type="text/javascript" src="javascript/acordes.js"></script> | ||
<script language="JavaScript" type="text/javascript"> | ||
$(function() { | ||
A = new AcordeDOM('div.js-acorde-print'); | ||
A.render_print(); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="js-acorde-print"> | ||
<div>G#</div> | ||
<div>11 10 8 8 11 11</div> | ||
<ul> | ||
<li>X X 2 4 4 4</li> | ||
<li>X 1 5 5 5 3</li> | ||
<li>X 0 2 2 2 0</li> | ||
</ul> | ||
</div> | ||
<div class="js-acorde-print"> | ||
<div>G#</div> | ||
<div>6 5 0 3 6 6</div> | ||
<ul> | ||
<li>X X 2 4 4 4</li> | ||
<li>X 1 5 5 5 3</li> | ||
<li>X 0 2 2 2 0</li> | ||
</ul> | ||
</div> | ||
<div class="js-acorde-print"> | ||
<div>G#</div> | ||
<div>6 5 3 3 6 6</div> | ||
<ul> | ||
<li>X X 2 4 4 4</li> | ||
<li>X 1 5 5 5 3</li> | ||
<li>X 0 2 2 2 0</li> | ||
</ul> | ||
</div> | ||
<div class="js-acorde-print"> | ||
<div>G#</div> | ||
<div>6 X X 7 6 10</div> | ||
</div> | ||
</body> | ||
|
||
</html> |