Skip to content

Commit

Permalink
Update html layout/styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett-Bodley committed Mar 31, 2024
1 parent 11baadd commit 70e0041
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@ <h1>SHAlala</h1>
<h2>Makes music out of SHA1</h2>

<form id="form">
<input id="form-input" type="text" placeholder="enter text here" /><br/>
<label for="file-input" style="padding-top: 5px; display: block">Upload a file (Does not get sent to a server):</label>
<input id="fileInput" type="file" style="padding-top: 5px; display: block"/>
<button style="margin-top: 10px">make jingle</button>

<div>
<label for="form-input">Text Input:</label>
<input id="form-input" type="text" placeholder="enter text here" /><br/>
</div>
<div>
<label for="file-input" style="padding-top: 5px">Upload a file (Does not get sent to a server):</label>
<input id="fileInput" type="file" style="padding-top: 5px"/>
</div>
<div style="margin-top:10px;">
tempo:<br/>
<input id="range-input" value="200" type="range" min="60" max="240" />
Expand All @@ -64,6 +67,7 @@ <h2>Makes music out of SHA1</h2>
<option value="majorpenta">Major Pentatonic</option>
</select>
</div>
<button style="margin-top: 10px">make jingle</button>
<div id="sha"></div>
<script src="https://unpkg.com/tone@14.8.49/build/Tone.js"></script>
<script type="module" src="/index.js"></script>
Expand Down

0 comments on commit 70e0041

Please sign in to comment.