-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.33 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/fifo_icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
FIFO Page Replacement Algorithm Visualizer by University of Cebu
</title>
<meta
name="description"
content="Learn and visualize the FIFO Page Replacement Algorithm with simulator/generator animations, examples, and an interactive quiz. Perfect for IT/CS students."
/>
<meta
name="keywords"
content="FIFO, FIFO Generator, FIFO Simulator, FIFO UC, FIFO University of Cebu, Page Replacement Algorithm, First-In-First-Out, Visualizer, Animation, Quiz, Computer Science"
/>
<meta name="author" content="Ralph Adriane P. Dilao" />
<meta
property="og:title"
content="FIFO Page Replacement Visualizer Generaator"
/>
<meta
property="og:description"
content="Visualize the FIFO Page Replacement Algorithm with animations, examples, and a quiz!"
/>
<meta
property="og:image"
content="https://fifo-simulator.vercel.app/fifo_image.jpg"
/>
<meta property="og:url" content="https://fifo-simulator.vercel.app" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>