-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmycomputer.html
More file actions
56 lines (53 loc) · 1.5 KB
/
mycomputer.html
File metadata and controls
56 lines (53 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Computer</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Tahoma, Arial, sans-serif;
font-size: 11px;
}
.content-area {
padding: 16px;
background: white;
}
h3 {
font-size: 14px;
margin-bottom: 12px;
color: #000;
}
p {
margin-bottom: 10px;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="content-area">
<h2>My Computer</h2>
<p>Here are the hardware specs for the devices I use on a daily basis.</p>
<h3>Desktop (Windows 11)</h3>
<ul>
<li>PowerSpec G447 Gaming PC</li>
<li>12th Gen Intel Core i9-12900K (3.2 GHz)</li>
<li>NVIDIA GeForce RTX 4070</li>
<li>32 GB DDR4 Memory</li>
<li>1 TB HDD, 1TB SSD</li>
</ul>
<h3>Laptop (MacOS Sequoia)</h3>
<ul>
<li>MacBook Pro (15-inch, 2019, Four Thunderbolt 3 ports)</li>
<li>2.3 GHz 8-core Intel Core i9</li>
<li>16 GB 2400 MHz DDR4</li>
<li>512 GB SSD</li>
<li>Intel UHD Graphics 630</li>
<li>15.4-inch Retina Display (1920x1200)</li>
<li>Touch Bar and Touch ID</li>
</ul>
</div>
</body>
</html>