-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.html
More file actions
33 lines (33 loc) · 1.74 KB
/
stack.html
File metadata and controls
33 lines (33 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="styles/stack-styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</script>
<title>Stack</title>
</head>
<body>
<h1>Stack(Array Implementation)</h1>
<br>
<span class="">Push</span>
<input class="inputval" type="text" name="" value="">
<button class="btn btn-sm btn-success addBtn" type="button" name="button">Push</button>
<span class="">Pop</span>
<button class ="btn btn-sm btn-success deleteBtn" type="button" name="button">Pop</button>
<span>Reset the Stack</span>
<button class ="btn btn-sm btn-success resetBtn" type="button" name="button">Reset</button>
<br>
<h6>Top</h6>
<div class="Top"></div>
<div class="fluid-container stack-holder">
</div>
<!-- jsfile -->
<script src="javascript/stack-main.js"></script>
<!-- bootstrap js libraries -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>