-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfancifymytext.html
More file actions
36 lines (34 loc) · 850 Bytes
/
fancifymytext.html
File metadata and controls
36 lines (34 loc) · 850 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
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Fancify Shamcify</title>
<script src="fancifymytext.js"></script>
<link rel="stylesheet" href="fancify.css">
</head>
<body>
<h1>Fancify my Text</h1>
<!-- Text Field -->
<fieldset>
<legend>Text</legend>
<textarea id="textArea" rows="4" cols="30" placeholder="Type some text here..."></textarea>
</fieldset>
<!-- Button controls -->
<fieldset>
<legend>Fancify</legend>
<button onclick="changeFont()">Bigger!</button>
<div>
<label>
<input id="fancyButton" type="radio" name="types" onchange="changeWeight()">
FancyShmancy
</label>
</div>
<div>
<label>
<input id="boringButton" type="radio" name="types" onchange="changeWeight()">
BoringBetty
</label>
</div>
<button onclick="moo()">Moo</button>
</fieldset>
</body>
</html>