-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (38 loc) · 1.19 KB
/
index.html
File metadata and controls
47 lines (38 loc) · 1.19 KB
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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Gerónimo Ortiz">
<title>FontSizer Jquery Plugin</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="fontsizer.js"></script>
<script type="text/javascript">
$(function() {
$('#controls span').fontsizer({
min: '18',
max: '36',
elements: 'p, .resize'
});
});
</script>
</head>
<body>
<header>
<h1>FontSizer JQuery Plugin</h1>
</header>
<div id="controls">
<a href="javascript:void(0);" id="sizermax"> A+ </a> | <a href="javascript:void(0);" id="sizermin"> A- </a>
</div>
<main>
<div class="resize">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <br>
Aenean commodo ligula eget dolor. Aenean massa. <br>
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
</div>
</main>
<footer>
FontSizer by <a href="http://playwebs.net">Playwebs.net</a>
</footer>
</body>
</html>