-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamicweb.html
More file actions
36 lines (30 loc) · 1.05 KB
/
dynamicweb.html
File metadata and controls
36 lines (30 loc) · 1.05 KB
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
36
<!DOCTYPE html>
<html>
<head>
<title>Dynamic Content </title>
<link rel="stylesheet" href="mystyle.css" type="text/css">
<style>
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaina');
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaina|Exo');
</style>
</head>
<body background="wallpaper-for-hd-7.jpg" background-position="right center" bacground-repeat="no-repeat">
<div class="content">
<form action="#" id = "frm">
<table>
<tr><td><input type="button" value="Add TextBox" onclick="return addTextbox()"/></td>
<td>
<input type="button" value="Remove TextBox" onclick="return removeitem()"/></td></tr>
<tr><td><input type="button" value="Add Button" onclick="return addButton()"/></td>
<td>
<input type="button" value="Remove Button" onclick="return removebutton()"/></td></tr>
</table>
<div class="elements" id="contentholder">
</div>
<div class="elements" id="buttoncontent">
</div>
</form>
</div>
<script type="text/javascript" src="myscript.js"></script>
</body>
</html>