-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostfix.html
33 lines (31 loc) · 1.01 KB
/
postfix.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Postfix/Prefix Evaluation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box">
<h1>Postfix Evaluation</h1>
<div class="inst">Enter your expression in the given box below</div>
<div class="input">
<input type="text" placeholder="Enter your expression" id="expression">
<button><a href='\'>Evaluate</a></button>
</div>
<div class="result">
<label for="result">RESULT:</label>
<input type="textbox" id="result">
</div>
<div class="btns">
<button><a href='\'>Postfix</a></button>
<button><a href='\'>Prefix</a></button>
</div>
<div class="madeby">
<span><a href='/'>By Souhardya</a></span>
<span><a href="/"> and Shazeb</a></span>
</div>
</div>
</body>
</html>