-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (77 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>SORTING ALGORITHM VISUALIZER</h1>
</header>
<main>
<section>
<h2>About This Project</h2>
<p>Web App for sorting algorithm visualization <br>
– Tech Stack: HTML for structuring, CSS and Bootstrap for styling, and JavaScript for interactive functionality. <br>
– Web application for visualizing a bunch of different sorting algorithms allowing users to select the algorithm, adjust array
size, and control the visualization speed.
</p>
</section>
<section>
<h2> Implemented popular sorting algorithms</h2>
<ol>
<li>Bubble Sort</li>
<li>Merge Sort</li>
<li>Selection Sort</li>
<li>Insertion Sort</li>
<li>Quick Sort</li>
</ol>
<p>Visit the website and visualize the sorting algorithms</p>
</section>
</main>
<a href="home.html">
<button type="button" class="btn btn-outline-success" >START VISUALIZATION!</button>
</a>
<br>
<footer>
<div class="footer-container">
<div class="footer-left">
<h2>Contact</h2>
<form action="submit-form.php" method="POST">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="btn btn-outline-primary">Submit</button>
</form>
</div>
<div class="footer-right">
<div class="logo">
</div>
<div class="footer-links">
</div>
<div class="social-icons">
<a href="https://twitter.com/alien_meteor" target="_blank"><img src="twitter.png" alt="Twitter"></a>
<a href="https://www.instagram.com/navika_agarwal" target="_blank"><img src="instagram.png" alt="Instagram"></a>
</div>
</div>
</div>
<br>
<br>
<p>© 2023 My Website. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>