-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
35 lines (35 loc) · 817 Bytes
/
example.html
File metadata and controls
35 lines (35 loc) · 817 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
<html>
<head>
<title>JavaScript & jQuery - Chapter 2: Basic JavaScript Instructions - Example</title>
<link rel="stylesheet" href="css/c02.css" />
</head>
<body>
<h1>Elderflower</h1>
<div id="content">
<div id="greeting" class="message">Hello!</div>
<table>
<tr>
<td>Custom sign: </td>
<td id="userSign"></td>
</tr>
<tr>
<td>Total tiles: </td>
<td id="tiles"></td>
</tr>
<tr>
<td>Subtotal: </td>
<td id="subTotal">$</td>
</tr>
<tr>
<td>Shipping: </td>
<td id="shipping">$</td>
</tr>
<tr>
<td>Grand total: </td>
<td id="grandTotal">$</td></tr>
</table>
<a href="#" class="action">Pay Now</a>
</div>
<script src="js/example.js"></script>
</body>
</html>