-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfancifymytext.html
More file actions
32 lines (26 loc) · 916 Bytes
/
fancifymytext.html
File metadata and controls
32 lines (26 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Fancify Shamcify</title>
<!-- link to the script file here -->
<script src="fancifymytext.js"></script>
</head>
<body>
<h1>Fancify my Text</h1>
<form>
<fieldset>
<legend>Text</legend>
<textarea id="textBox" rows="4" cols="30"></textarea>
</fieldset>
<fieldset>
<legend>Fancify</legend>
<button id="biggerButton" type="button" onclick="showAlert()">Bigger!</button>
<button id="mooButton" type="button" onclick="mooButtonChanges()">Moo</button><br>
<input type="radio" id="fancy" name="style" value="FancyShmancy" onchange="radioButtonAlert()">
<label for="fancy">FancyShmancy</label><br>
<input type="radio" id="boring" name="style" value="BoringBetty" onchange="radioButtonAlert()">
<label for="boring">BoringBetty</label>
</fieldset>
</form>
</body>
</html>