-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImportance.html
More file actions
87 lines (87 loc) · 3.15 KB
/
Importance.html
File metadata and controls
87 lines (87 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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: left;
border-radius: 10px;
border: 3.5px solid #198CA3;
width: 40%;
left: 6%;
top: 150px;
z-index: -1;
}
.content .img3{
position: absolute;
float: left;
width: 50%;
left: 4%;
top: 70%;
z-index: -1;
}
.content .img4{
position: absolute;
float: right;
border-radius: 10px;
border: 3.5px solid #198CA3;
width: 40%;
right: 5%;
top: 750px;
z-index: -1;
}
.content .text1{
position: absolute;
top: 12%;
right: 6%;
width: 600px;
z-index: -1;
}
.content .text2{
position: absolute;
top: 95%;
left: 5%;
width: 700px;
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">HOME</a></li>
<a href="History.html">HISTORY</a></li>
<a href="Development.html">DEVELOPMENT</a></li>
<a href="Importance.html" class="active">IMPORTANCE</a></li>
</div>
<hr size="4px" color="#3BC5E1">
</div>
<div class="content">
<img src="Traffic Light.png" alt="Traffic Light" class="img2">
<img src="Rubik's cube.png" alt="Rubik's cube" class="img3">
<div class="text1">
<p style="font-size: 35px; text-shadow: 0 0 10px #3bc5e1, 0 0 20px #3bc5e1, 0 0 30px #3bc5e1;">Algorithms in our life</p>
<p>Generally, algorithms are present everywhere in our everyday life and take several different forms</p>
<P>Some examples of these algorithms are the following:
<ul>
<li>Traffic lights at roads</li>
<li>Searching a book in a library</li>
<li>Tying shoelaces</li>
<li>etc.</li>
</ul>
</p>
</div>
<img src="Code.jpg" alt="Code" class="img4">
<div class="text2">
<p style="font-size: 35px; text-shadow: 0 0 10px #3bc5e1, 0 0 20px #3bc5e1, 0 0 30px #3bc5e1;">Algorithms in computer science</p>
<p>Algorithms are used in every part of <strong><em>computer science</em></strong>. They play a very important role in this field as they constitute the basis on which computers we use today have been built.</p>
<p>In addition to the functionality of computers and their use in problem-solving, algorithms give us the most ideal option for accomplishing a task. More specifically, they can be used to improve the efficiency of a computer programme, whether concerning accuracy or speed and they contribute to the proper utilization of resources (computer memory).</p>
</div>
<p style="position: absolute; color: #3BC5E1; font-size: 20px; left: 40%; top: 163%; padding-bottom: 15px;">©2023 Stratis Rallis. All Rights Reserved.</p>
</div>
<script src="Sticky scroll.js"></script>
</body>
</html>