Last active
August 29, 2015 14:26
-
-
Save SomeKay/98325b0a80094f720185 to your computer and use it in GitHub Desktop.
Basic sound machine layout
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Sound Machine</title> | |
<link href="css/bootstrap.css" rel="stylesheet" type="text/css"/> | |
<link href="css/index.css" rel="stylesheet" type="text/css"/> | |
</head> | |
<body> | |
<div id="main" class="container-fluid"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<div class="speaker"> | |
<img src="img/speaker.png"/> | |
</div> | |
<h1> | |
<img src="img/logo.png"/> | |
</h1> | |
</div> | |
</div> | |
<div class="row buttons"> | |
<div class="col-xs-3"> | |
<div class="button-sound" data-sound="ba-dum-tsss"> | |
<span class="button-icon"></span> | |
</div> | |
</div> | |
<div class="col-xs-3"> | |
<div class="button-sound" data-sound="money"> | |
<span class="button-icon"></span> | |
</div> | |
</div> | |
... <!-- other buttons in this row --> | |
</div> | |
... <!-- other rows --> | |
</div> | |
<script src="js/index.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment