-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
67 lines (63 loc) · 2.7 KB
/
main.html
File metadata and controls
67 lines (63 loc) · 2.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SortVisualizer</title>
<link rel="stylesheet" type="text/css" href="./CSS/main.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<div class="logo-container">
<img src="./Images/logo.png" alt="logo" class="logo-img">
<h4 class="logo">Sort Visualizer</h4>
</div>
<nav>
<ul class="nav-links">
<li><a href="#" class="list-items">Home</a></li>
<li><a href="./HTML/about.html" class="list-items">About</a></li>
<li><a href="./HTML/contact.html" class="list-items">Contact</a></li>
</ul>
</nav>
</header>
</div>
<main>
<section class="introduction">
<div class="hooker">
<h1 class="title">Dive into the world of Sorting Algorithms</h1>
<h3 class="info">A Sorting Algorithm is used to rearrange a given array or list elements according to a
comparison operator on the elements. The comparison operator is used to decide the new order of
element in the respective data structure.</h3>
<form action="./HTML/selection.html">
<input class="button" type="Submit" value="Start Now">
</form>
</div>
</section>
<section id="newsletter">
<div class="container">
<h1>Subscribe To The Newsletter</h1>
<form>
<input id="inputtext" type="email" placeholder="Enter Email...">
<input class="button" type="Submit" value="Subscribe">
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="./Images/box-gear.png" alt="logo" class="logo-img">
<h3>Customize Your Graph</h3>
<p>Customize your graph with interactive controls for the best interactive experience.</p>
</div>
<div class="box">
<img src="./Images/box-eye.png" alt="logo" class="logo-img">
<h3>Sit Back and Watch</h3>
<p>Sit back and watch the computer algorithm do its magic.</p>
</div>
</div>
</section>
</main>
</body>
</html>