-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
57 lines (57 loc) · 2.47 KB
/
Home.html
File metadata and controls
57 lines (57 loc) · 2.47 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
<!DOCTYPE html>
<head>
<title>Algorithmic.com</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="shortcut icon" type="image/x-icon" href="Favicon.ico">
<style>
.content .img2{
position: absolute;
float: right;
border-radius: 10px;
border: 3.5px solid #198CA3;
width: 45%;
right: 2%;
top: 23%;
z-index: -1;
}
.content .text{
position: absolute;
top: 13%;
left: 6%;
width: 600px;
z-index: -1;
}
iframe{
position: absolute;
top: 88%;
left: 19%;
border-radius: 10px;
border: 3.5px solid #198CA3;
z-index: -1;
}
</style>
</head>
<body>
<div id="navbar">
<a href="Home.html"><img src="Logo2.png" alt="Logo" class="img1"></a>
<div id="buttons">
<a href="Home.html" class="active">HOME</a></li>
<a href="History.html">HISTORY</a></li>
<a href="Development.html">DEVELOPMENT</a></li>
<a href="Importance.html">IMPORTANCE</a></li>
</div>
<hr size="4px" color="#3BC5E1">
</div>
<div class="content">
<div class="text">
<p style="font-size: 35px; text-shadow: 0 0 10px #3bc5e1, 0 0 20px #3bc5e1, 0 0 30px #3bc5e1;">What is an algorithm?</p>
<p>An <strong><em>algorithm</em></strong> is a procedure used for solving a problem or performing a computation. Algorithms act as a list of instructions that conduct specified actions step by step in either hardware or software-based routines.</p>
<p>For example, following a recipe is a great example of an algorithm which is applicable in everyday life. It comprises a replicable set of specific steps to accomplish a predetermined goal (such as cooking spaghetti or baking a cake).
</div>
<img src="What is an algorithm.jpg" alt="What is an algorithm" class="img2">
<iframe width="948" height="533" style="float: center" src="https://www.youtube.com/embed/6hfOvs8pY1k" title="What's an algorithm? - David J. Malan" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<p style="position: absolute; color: #3BC5E1; font-size: 20px; left: 40%; top: 1205px; padding-bottom: 15px;">©2023 Stratis Rallis. All Rights Reserved.</p>
</div>
<script src="Sticky scroll.js"></script>
</body>
</html>