-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
112 lines (92 loc) · 4.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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 Postfix/Prefix</title>
<!-- Favicon -->
<link rel="icon" href="images/conversion.png">
<!-- BootStrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- My CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;900&family=Ubuntu&display=swap"
rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/27a53a076c.js" crossorigin="anonymous"></script>
</head>
<body>
<section id="introduction">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-md intro-navbar">
<div class="container-fluid">
<a class="navbar-brand" href="#">Conv-infix</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar Options -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown nav-list-items">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Tools
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./conversion.html">Convertor</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="./evaluation.html">Evaluator</a></li>
</ul>
</li>
<li class="nav-item nav-list-items">
<a class="nav-link " aria-current="page" href="./">Home</a>
</li>
<li class="nav-item nav-list-items">
<a class="nav-link" href="#">About</a>
</li>
</div>
</div>
</nav>
<hr class="nav-btm-line">
</section>
<section id="tools">
<div class="tools-intro">
<h1 class="selector-heading">
INFIX ☞ PREFIX & POSTFIX
</h1>
<p class="tool-description">This is a simple Infix to Prefix or Postfix Operations dialog.</p>
<hr class="tool-desc-line">
</div>
<div class="helper-text">
<h3>
CHOOSE AN OPERATION
</h3>
</div>
<div class="action-buttons">
<a href="./conversion.html">
<button type="button" id="action-btn" class="btn btn-primary conv-btn">Expression Conversion</button>
</a>
<a href="./evaluation.html">
<button type="button" id="action-btn" class="btn btn-warning conv-btn">Expression Evaluation</button>
</a>
</div>
<hr class="btn-seperator">
<div class="contributor">
<p class="contributor-name">By Jay & Shubham</p>
</div>
</section>
<!-- Font Awesome js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
<!-- My JavaScript -->
<script src="script.js" charset="utf-8"></script>
</body>
</html>