-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
253 lines (223 loc) · 9.67 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <title>Document</title> -->
<title>Structurex</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="src/home/css/style.css" />
<link rel="stylesheet" href="src/seive_Of_Eratosthenes/style.css" />
<script src="https://use.fontawesome.com/7ade57373d.js"></script>
<!-- style for more button -->
<link rel="stylesheet" href="src/home/css/morebutton.css" />
<!-- Page icon -->
<link rel="icon" href="./src/assets/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="no-scroll-preload">
<div class="loader-container">
<div class="atom">
<div class="electron"></div>
<div class="electron-alpha"></div>
<div class="electron-omega"></div>
</div>
</div>
<header>
<div id="header-inner">
<a href="#" id="logo"></a>
<a class="navbar-brand1" rel="home" href="#" title="Structurex">
<img src="src/assets/nlogo.png" class="main-logo">
<href="#" class="name">Structurex</a>
<div class="container1 blue" id="navbarNav">
<!-- ------HAMBURGER MENU -------->
<!-- -----------NEW CHANGES----------- -->
<i class="fas fa-2x fa-bars" style="color:white;display: none;" onclick="display();"></i>
<ul class="heck" id="heck">
<a href="index.html" class="link">Home</a>
<a href="sort.html" class="link">Sorting</a>
<a href="search.html" class="link">Searching</a>
<a href="./Path Finding/index.html" class="link">Path Finding</a>
<a href="tree.html" class="link" class="link">Graph</a>
<div class="dropdown">
<button onclick="show_hide()" class="Morebutton" > MORE</button>
<center>
<div id="list-items">
<!-- Add more list items here if required -->
<a href="seiveErato.html" >Sieve Of Eratosthenes</a>
</div>
</center>
</div>
</ul>
</div>
</div>
<div class="logo-center">
<img src="src/assets/logo.png" width="80%" xlink:href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/cars-logo.jpg">
</div>
</header>
<main>
<br><br>
<h1 class="head">JavaScript Based Data Structure & Algorithm Visualizer</h1>
<h3 class="details"> Algorithm Visualizer is an interactive online platform that visualizes algorithms from the code. Making your work way more easier</h3>
<div class="cards">
<div class="card">
<header>
<h2><a href="sort.html">Sorting</a></h2>
</header>
<ul>
<li> <a href="bubbleSort.html"> Bubble Sort</a></li>
<li><a href="insertionsort.html">Insertion Sort</a></li>
<li><a href="selectionsort.html">Selection Sort</a></li>
<li><a href="mergeSort.html">Merge Sort</a></li>
<li><a href= "quickSort.html">Quick Sort</a></li>
</ul>
</div>
<div class="card">
<header>
<h2><a href="search.html">Searching</a></h2>
</header>
<ul>
<li><a href="linearsearch.html">Linear Search</a></li>
<li><a href="binarysearch.html">Binary Search</a></li>
</ul>
</div>
</main>
<!-- Footer -->
<footer>
<div class="main-content">
<div class="left box">
<h2>About Us</h2>
<div class="content">
<p>Structurex is an online platform that visualizes algorithms,
making Data Structure and Algorithm <br>more easy to learn and understand.
</p>
<div class="links">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
<div class="address box">
<h2>Address</h2>
<div class="content">
<div class="place">
<i class="fas fa-map-marker-alt"></i>
<span class="text">Kanpur,Uttar Pradesh</span>
</div>
<div class="email">
<i class="fas fa-envelope"></i>
<span class="email">akshitadixit.int@gmail.com</span>
</div>
</div>
</div>
<div class="right box">
<h2>Contact Us</h2>
<form action="#">
<div class="email">
<div class="text">Email</div>
<input type="email" required>
</div>
<div class="msg">
<div class="text">Message</div>
<textarea name="" id="" cols="25" rows="2" required></textarea>
</div>
<div class="btn">
<button type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
<div class="footer-bottom">
<center>
<h4 class="credits">© AkshitaDixit 2021. All Rights Reserved.</h4>
</center>
</div>
</footer>
<!-- <section id="contactus">
<p id="contact-head">Contact us</p>
<p id="contact-message">Do you have any questions? Please do not hesitate to contact us directly. Our team will come back to you within a matter of hours to help you.</p>
<div class="container">
<div id="form-footer" class="row">
<div class="col-md-8">
<div class="center-div">
<div class="contact-table">
<form action="https://formspree.io/f/mjvjeggl" method="POST" id="my-form">
<div class="input-container">
<label class="contact-inputs" for="validationCustom01">Your Name :</label>
<input type="text" class="form-control contact-inputs-tags" id="validationCustom01" placeholder="Enter your name" name="name">
</div>
<div class="input-container">
<label class="contact-inputs" for="validationCustom02">Your Email :</label>
<input type="email" class="form-control contact-input-tags" id="validationCustom02" placeholder="Enter your email address" name="email">
</div>
<div class="input-container">
<label class="contact-inputs" for="validationCustom03">Message :</label>
<textarea type="text" class="form-control contact-input-tags" id="validationCustom03" placeholder="Enter your message here . . ." rows="4" name="message"></textarea>
</div>
<div>
<button class="btn btn-md" type="submit">SUBMIT</button>
</div>
</form>
<div id="status"></div>
</div>
</div>
</div>
<div id="social-section" class="col-md-4">
<div style="padding:0px 20px;padding-bottom: 15px;border-bottom:3.5px solid grey">
<p class="footer-details"><i class="fa fa-map-marker mr-5" aria-hidden="true"></i><span>Structure X</span></p>
<p class="footer-details"><i class="fa fa-envelope mr-5" aria-hidden="true"></i><span>structurexcodes@gmail.com</span></p>
</div>
<div id="social-media-icons">
<i class="fa fa-facebook-square social-media" aria-hidden="true"></i>
<i class="fa fa-linkedin-square social-media" aria-hidden="true"></i>
<i class="fa fa-google-plus-square social-media" aria-hidden="true"></i>
<i class="fa fa-twitter social-media" aria-hidden="true"></i>
<i class="fa fa-github social-media" aria-hidden="true"></i>
<i class="fa fa-instagram social-media" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
</section> -->
<script>
let loader = document.querySelector(".loader-container");
window.addEventListener("load", vanish);
function vanish() {
loader.classList.add("disappear");
}
$(function () {
$("a.nav-link").each(function () {
if ($(this).prop("href") == window.location.href) {
$(this).addClass("current-link");
}
});
});
</script>
<!-- script for moreButton on the top... -->
<script src="src/home/js/morebutton.js"></script>
<script src="src/home/js/script.js"></script>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"
></script>
</body>
</html>