-
Notifications
You must be signed in to change notification settings - Fork 0
/
XML_Parser.html
46 lines (45 loc) · 943 Bytes
/
XML_Parser.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<! DOCTYPE html>
<html>
<head>
<style>
body{
position: absolute;
width: 1500px;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
font-family: Arial Black;
}
#line1{
position: absolute;
margin-top: 125px;
margin-left: 580px;
margin-bottom: 0px;
margin-right: 0px;
font-size: 20px;
}
#textbox1 {
height: 25px;
margin: 175px 0 0 654px;
position: absolute;
width: 180px;
}
#button1 {
background-color: #bfbfc6;
border-radius: 5px;
height: 27px;
margin: 210px 0 0 689px;
position: absolute;
width: 108px;
}
</style>
<script src="parser.js"></script>
</head>
<body>
<p id="line1"><b>Enter URL for Airlines List XML File</b></p>
<form id="form1" method="POST">
<input id="textbox1" type="text" maxlength="255" value=""><br>
<input id="button1" type="button" value="Submit Query" onClick="viewXML(this.form)">
</form>
</body>
</html>