-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample1.html
More file actions
27 lines (19 loc) · 745 Bytes
/
example1.html
File metadata and controls
27 lines (19 loc) · 745 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example 1</title>
<link rel="stylesheet" type="text/css" href="example1.css"/>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script type="text/javascript" src="example1.js"></script>
<script type="text/javascript" src="dodl_lib.js"></script>
<script type="text/javascript" src="example1_dodl.js"></script>
</head>
<body>
<select id="color_selector">
<option value="red">red</option>
<option value="blue">blue</option>
</select>
<input type="button" value="add square" onclick="addsquare()"/>
</body>
</html>