-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.6 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infix To PreFix/PostFix Converter</title>
<link rel="icon" href="images/infix.png" type="image/png">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link href="code/infix.css" rel="stylesheet">
<script src="bootstrap/js/bootstrap.min.js"></script>
<title>Darshan Balar</title>
</head>
<body class="bg-dark">
<div class="main_container">
<div class="container content_container bg-dark shadow-lg">
<!-- content_heading -->
<div class="content_heading pt-5 pl-4">
Infix To <span class="text-warning choice">Postfix</span>
<hr class="bg-light w-25 mx-auto">
</div>
<!-- content_body -->
<div class="content_body">
<!-- content_body_inputs -->
<div class="content_body_input">
<input type="text" name="infix" id="infix" placeholder="Enter Infix " class="shadow-lg" autofocus>
<div class="error">
<strong>Error : </strong><span class="err"></span>
</div>
</div>
<!-- content-body_buttons -->
<div class="content_body_buttons">
<button class="postfix_button shadow-lg bg-warning" value = "post" >PostFix</button>
<button class="prefix_button" value = "pre" >PreFix</button>
</div>
<!-- content_body_output -->
<div class="content_body_output ">
<div class="content_body_output_text text-warning " id = "output">
</div>
</div>
<div class="table-responsive">
<table class="table table-sm table-dark table-bordered table-striped table-hover" id = "table">
<thead id = "thead">
</thead>
<tbody id = "tbody">
</tbody>
</table>
</div>
</div>
<!-- content_body_footer -->
<div class="content_footer bg-dark shadow-lg text-white">
- Developed By <span class="text-warning">D Creators</span>
</div>
</div>
</div>
<script src = "code/infix.js" ></script>
</body>
</html>