-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.html
More file actions
19 lines (19 loc) · 771 Bytes
/
Copy patherrors.html
File metadata and controls
19 lines (19 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>JavaScript & jQuery - Chapter 10: Error Handling & Debugging - Console Errors</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="css/c10.css" />
</head>
<body>
<div id="logo"><img src="img/paint-logo.png" alt="Paintbrush logo" /></div>
<form action="#" id="calculator">
<h2>Find the area of a wall:</h2>
<input type="text" name="width" id="width" placeholder="width" />
<input type="text" name="height" id="height" placeholder="height" />
<input type="submit" value="Calculate area" id="submit" />
</form>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/errors.js"></script>
</body>
</html>