-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (87 loc) · 3.99 KB
/
index.html
File metadata and controls
87 lines (87 loc) · 3.99 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>
<html>
<head>
<title>CO TUTORIALS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<link rel="stylesheet" type="text/css" href="homepage_style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
</head>
<body style="background-color: black;">
<div class="navbar">
<div class="container">
<img class="Image2" src="hbkg.jpeg">
<div class="imgcontent">
<br>
<br>
<h1 style="color: #e65c00" class="a">Computer Organisation Tutorials</h1>
<br>
<br>
<p class="a">Welcome to COT (Computer Organisation Tutorials), an online learning platform for the study of internal working, structuring and implementation of a computer system. Computer Organisation is concerned with the structure and behaviour of digital computers. The main objective of this learning platform is to help students and interested readers understand the overall basic computer hardware structure, including the peripheral devices. Computer Organisation is about the design of different hardware computer parts and how they come together to form a computer system.</p>
<p class="a">To further understand the practical application of the theoretical concepts, the website includes a section on algorithm implementation using 8085 assembly language. Assembly languages are low-level languages used for direct communication with the components of the machine.</p>
<p class="a">In the midst of a pandemic, it is important to stay updated with the current happenings, therefore the website also contains a section which provides real time data about the same.</p>
<br>
</div>
<div class="top-left"><a href="Homepage.html" id="home">Home</a></div>
<div class="top-right"><a href="conme.html" class="right">Contact Us</a>
<a href="aboutme.html" class="right">About Us</a>
</div>
</div>
</div>
<br>
<br>
<div class="hcontainer">
<div class="box">
<div class="icon"><i class="fa fa-book" aria-hidden="true"></i>
</div>
<div class="content">
<h3>Tutorials and Notes</h3>
<p>In this secion, you will find all the notes, presentations and videos on all topics in Computer Organisation (CSD-221) Click to read more</p>
<br>
<button onclick="window.location.href='GSA.html'" class="read">
Read more
</button>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-code" aria-hidden="true"></i>
</div>
<div class="content">
<h3>Implementation of Algorithms</h3>
<p>Here, you will find some Computer Science Algorithms implemented in 8085 Assembly Language. Along with a simulator, providing output for a given set of input. Click to read more.</p>
<br>
<button onclick="window.location.href='sort.html'" class="read">
Read more
</button>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-user-md" aria-hidden="true"></i>
</div>
<div class="content">
<h3>Covid 19 Live Tracker</h3>
<p>Find real-time data regarding Covid-19 including patients recovered, in India and around the world. Click to know more.</p>
<br>
<button onclick="window.location.href='covid.html'" class="read">
Read more
</button>
</div>
</div>
</div>
<br>
<br>
<br>
<footer>
<div style="float: right; padding-right: 600px;">
<a href="https://www.facebook.com/" class="fa fa-facebook"></a>
<a href="https://www.twitter.com/" class="fa fa-twitter"></a>
<a href="https://www.youtube.com/" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/" class="fa fa-instagram"></a>
</div>
<h4 style="color: white; padding-left: 20px; padding-top: 10px; text-align: left;">Reach us</h4>
</footer>
</body>
</html>