Dansive Studio (text editor)
by Daniel Hall
HTML
<h1>
Divsive Text Editor
</h1>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<textarea id="te"></textarea>
<button onclick="document.getElementById('te')
.style.fontFamily = 'print';">
print
</button>
<button onclick="document.getElementById('te')
.style.fontFamily = 'cursive';">
cursive
</button>
<button onclick="document.getElementById('te')
.style.fontFamily = 'Comic Sans MS';">
comic
</button>
<button onclick="document.getElementById('te')
.style.fontSize = '2em';">
+
</button>
<button onclick="document.getElementById('adj1')
.style.fontSize = '1em';">
-
</button>
<hr>
CSS
button {
color: purple;
font-family: cursive;
}
textarea {
font-size: 1em;
}