Jump to content

Formatting Tools


These are just notes for code that is useful for formatting. The div allows for horizontal scrolling, the text area for  scrolling text blocks, the next div is to have audio over text combined

 

<div class="scroll-container" style="background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;">
  <!-- put image tags in-->
</div>
<textarea cols="50"  rows="10" wrap="hard">
<!--put text in-->
</textarea>

<div>
<p>
	<audio controls="" data-audio-embed="">
		<source src="MP3 URL" type="audio/mpeg"> Your browser does not support the audio tag
	</audio>
</p>
  <textarea cols="50"  rows="10" wrap="hard">
<!--put text correlating to audio in-->
</textarea>
</div>

 

×
×
  • Create New...