-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (100 loc) · 3.5 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📃</text></svg>"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<!-- #region Fonts + Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&family=Pacifico&family=Playfair+Display&family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- #endregion -->
<!-- #region Meta -->
<!-- Primary Meta Tags -->
<title>Page Replacement Algorithms | Giải thuật thay thế trang</title>
<meta
name="title"
content="Page Replacement Algorithms | Giải thuật thay thế trang"
/>
<meta
name="description"
content="Giải thuật thay thế trang (FIFO, LRU, OPT) online.
Online resolver for Page Replacement Algorithms (FIFO, LRU, OPT) ."
/>
<!-- Open Graph / Facebook -->
<meta
property="og:type"
content="website"
/>
<meta
property="og:url"
content="https://metatags.io/"
/>
<meta
property="og:title"
content="Page Replacement Algorithms | Giải thuật thay thế trang"
/>
<meta
property="og:description"
content="Giải thuật thay thế trang (FIFO, LRU, OPT) online.
Online resolver for Page Replacement Algorithms (FIFO, LRU, OPT) ."
/>
<meta
property="og:image"
content="https://images.unsplash.com/photo-1636029697866-214ee5315764?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80&h=628"
/>
<!-- Twitter -->
<meta
property="twitter:card"
content="summary_large_image"
/>
<meta
property="twitter:url"
content="https://metatags.io/"
/>
<meta
property="twitter:title"
content="Page Replacement Algorithms | Giải thuật thay thế trang"
/>
<meta
property="twitter:description"
content="Giải thuật thay thế trang (FIFO, LRU, OPT) online.
Online resolver for Page Replacement Algorithms (FIFO, LRU, OPT) ."
/>
<meta
property="twitter:image"
content="https://images.unsplash.com/photo-1636029697866-214ee5315764?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80&h=628"
/>
<!-- #endregion -->
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>