-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hardware Tester</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/favicon.png" type="image/png">
</head>
<body>
<div class="header" onclick='window.location.href = "index.html";'>
<h1>Hardware Tester</h1>
</div>
<center>
<nav>
<a href="microphone.html">Microphone</a>
<a href="webcam.html">Webcam</a>
<a href="speaker.html">Speakers</a>
<a href="gpu.html">GPU</a>
<a href="controller.html">Controller</a>
<a href="midi.html">MIDI</a>
</nav>
</center>
<div class="content">
<div class="test" onclick='window.location.href = "microphone.html";'>
<h1>Microphone</h1>
<p>Check if your microphone is working, and see information related to audio-input devices.</p>
</div>
<div class="test" onclick='window.location.href = "webcam.html";'>
<h1>Webcam</h1>
<p>Test your webcam connected to the device, and check information about it like resolution, etc.</p>
</div>
<div class="test" onclick='window.location.href = "speaker.html";'>
<h1>Speakers</h1>
<p>Sometimes, your speakers don't work. Useful for checking whether an audio device works or not.</p>
</div>
<div class="test" onclick='window.location.href = "gpu.html";'>
<h1>GPU</h1>
<p>Shows information about the GPU in the device. Useful for checking the specs, etc.</p>
</div>
<div class="test" onclick='window.location.href = "controller.html";'>
<h1>Controller</h1>
<p>Plug in a controller to check if everything's working fine, so you don't lose another game.</p>
</div>
<div class="test" onclick='window.location.href = "midi.html";'>
<h1>MIDI</h1>
<p>Check if your MIDI devices are working properly, and see information related to them.</p>
</div>
</div>
<div class="footer">
<p>Made with 💚 by <a style="color:#0071e3;text-decoration: underline;" href="https://github.com/v-pun215">v-pun215</a></p>
</div>
</body>
</html>