Skip to content

Instantly share code, notes, and snippets.

@SomeKay
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SomeKay/98325b0a80094f720185 to your computer and use it in GitHub Desktop.
Save SomeKay/98325b0a80094f720185 to your computer and use it in GitHub Desktop.
Basic sound machine layout
<!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