forked from cmorrow/debugging-js-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watches.html
28 lines (26 loc) · 903 Bytes
/
watches.html
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
<!doctype html>
<html class="no-js" lang="en" >
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Debugging Javascript</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="row">
<div class="small-12 columnsouterB">
<img class="left" src="images/debugging-js.png" alt="">
<h2 class="text-right right">Watches</h2>
</div>
</div>
<div class="panel">
<p class="text-center">
<a href="index.html" class="button"><i class="fa fa-chevron-left"></i></a>
<a href="console.html" class="button"><i class="fa fa-chevron-right"></i></a>
</p>
</div>
<script src="js/lib/jquery.js"></script>
<script src="js/watches.js"></script>
</body>
</html>