-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
23 lines (23 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>consoleBuddy</title>
<meta name="description" content="consoleBuddy examples">
</head>
<body>
<script type="text/javascript" src="consoleBuddy.js"></script>
<script type="text/javascript">
$consoleBuddy.log('This is a success message', 'success');
$consoleBuddy.log('This is a warning message', 'warning');
$consoleBuddy.log('This is an error message', 'error');
$consoleBuddy.log('This is an information message', 'info');
$consoleBuddy.log('This is a pretty pink message', 'pink');
$consoleBuddy.log('This is a chalkboard message', 'chalkboard');
$consoleBuddy.log('This is a tiger striped message', 'tiger');
$consoleBuddy.log('This is a rainbow message', 'rainbow');
$consoleBuddy.log('This is some <b><i><u>Bold italic underlined text</u></i></b> and this is not');
$consoleBuddy.log('<b><i><u>Wow bold italic underlined rainbow text!</u></i></b>', 'rainbow');
</script>
</body>
</html>