-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) ยท 1.11 KB
/
index.html
File metadata and controls
29 lines (23 loc) ยท 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mySpec</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<h1>My HardWare Information ๐ป</h1>
<div id="system-info">
<p><strong>CPU:</strong> <span id="cpu">๋ฒํผ์ ๋๋ฅด๊ณ ์ ์๋ง ๊ธฐ๋ค๋ ค ์ฃผ์ธ์!๐</span></p>
<p><strong>GPU:</strong> <span id="gpu">๋ฒํผ์ ๋๋ฅด๊ณ ์ ์๋ง ๊ธฐ๋ค๋ ค ์ฃผ์ธ์!๐</span></p>
<p><strong>RAM:</strong> <span id="ram">๋ฒํผ์ ๋๋ฅด๊ณ ์ ์๋ง ๊ธฐ๋ค๋ ค ์ฃผ์ธ์!๐</span></p>
<p><strong>Device ID:</strong> <span id="deviceId">๋ฒํผ์ ๋๋ฅด๊ณ ์ ์๋ง ๊ธฐ๋ค๋ ค ์ฃผ์ธ์!๐</span></p>
</div>
<button class="search-info" onclick="fetchSystemInfo()">์กฐํํ๊ธฐ</button>
<h4 style="margin: 2rem;">© Team mySpec(Capstone Design2, Korea Univ Sejong). All Rights Reserved.</h4>
</div>
<script src="./js/fetchSystem.js"></script>
</body>
</html>