Skip to content

Instantly share code, notes, and snippets.

@edmore
Created June 12, 2012 17:07
Show Gist options
  • Save edmore/2918734 to your computer and use it in GitHub Desktop.
Save edmore/2918734 to your computer and use it in GitHub Desktop.
Sound playback loop html 1st draft
<html>
<head>
<title> Sound Loop </title>
<style>
#container{ font-size: 6em; float: left; }
#question{
float: right;
border: 1px solid #000;
}
#question_header{
background-color: blue;
text-align: center;
color: #FFF;
font-weight: bold;
}
#person{ clear: both; }
</style>
<script src="jquery-1.7.2.min.js"></script>
<script src="array_setTimeout.js"></script>
</head>
<body>
<div id="container">
Loading .....
</div>
<div id="question">
<div id="question_header"><span>Questions</span></div>
<div id="question_item"><ul></ul></div>
</div>
<div id="person">
</div>
<div id="object">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment