-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.html
81 lines (77 loc) · 3.82 KB
/
Main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>OS Simulator</title>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Y4oOpwW3duJdCWv5ly8SCFYWqFDsfob/3GkgExXKV4idmbt98QcxXYs9UoXAB7BZ"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- CSS -->
<link rel="stylesheet" href="./CSS/Main.css">
</head>
<body>
</body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse nav-bar-section-02" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./Our Team.html">Our Team</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="OS-Simulator-Heading container d-flex justify-content-center">
<div class="row display-3">OS Simulator</div>
</div>
<hr>
<div class="container-fluid col-11 OS-Simulator-Div-01">
<div class="card" style="width: 18rem;">
<div class="display-3 card-head" style="border-bottom: 3px solid #0d6efd;">PS</div>
<div class="card-body">
<h5 class="card-title fs-4">Process Scheduling</h5>
<p class="card-text fs-6">
Process scheduling is how the CPU chooses which process to run next. It is essential for efficient and
fair utilization of the CPU in a multi-tasking environment.</p>
<a href="./Process Scheduling.html">
<button type="button" class="btn btn-outline-primary offset-1 col-10 text">Explore</button>
</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="display-3 card-head" style="border-bottom: 3px solid #198754;">VM</div>
<div class="card-body">
<h5 class="card-title fs-4">Virtual Memory</h5>
<p class="card-text fs-6">Virtual memory is a technique used by operating systems to simulate physical
memory by temporarily transferring data to a hard drive or SSD. Effective virtual memory management can
improve system performance and prevent out-of-memory errors.</p>
<a href="./Virtual Memory.html">
<button type="button" class="btn btn-outline-success offset-1 col-10 text">Explore</button>
</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="display-3 card-head" style="border-bottom: 3px solid #ffc107;">MM</div>
<div class="card-body">
<h5 class="card-title fs-4">Memory Management</h5>
<p class="card-text fs-6">Memory Management is the process of assigning and managing memory space in a
computer system. It is critical for ensuring efficient program operation and preventing issues such as
memory leaks or crashes due to insufficient memory.</p>
<a href="./Memory Management.html">
<button type="button" class="btn btn-outline-warning offset-1 col-10 text">Explore</button>
</a>
</div>
</div>
</div>
</html>