-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computer Information</title>
<link rel="stylesheet" href="styles.css">
<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=Inter&display=swap" rel="stylesheet">
</head>
<body>
<h1>PuterSF - Computer Information</h1>
<ul id="system-info">
<li><strong>Operating System:</strong> <span id="os"></span></li>
<li><strong>Browser Version:</strong> <span id="browser-version"></span></li>
<li><strong>Total Memory (GB):</strong> <span id="total-memory"></span></li>
<li><strong>Platform:</strong> <span id="platform"></span></li>
<li><strong>Browser Language:</strong> <span id="browser-language"></span></li>
<li><strong>User Agent:</strong> <span id="user-agent"></span></li>
<li><strong>Online Status:</strong> <span id="online-status"></span></li>
<li><strong>CPU Architecture:</strong> <span id="cpu-architecture"></span></li>
<li><strong>Number of CPU Cores:</strong> <span id="cpu-cores"></span></li>
<li><strong>Device Type:</strong> <span id="device-type"></span></li>
<li><strong>Screen Resolution:</strong> <span id="screen-resolution"></span></li>
<li><strong>Timezone:</strong> <span id="timezone"></span></li>
</ul>
<script src="script.js"></script>
</body>
</html>