diff options
| author | nasrlol <nsrddyn@gmail.com> | 2024-11-18 23:10:14 +0100 |
|---|---|---|
| committer | nasrlol <nsrddyn@gmail.com> | 2024-11-18 23:10:14 +0100 |
| commit | cc8792b3150f7b7f0a5a297dedd78295d4031c68 (patch) | |
| tree | 2b8d24c3f195e3d2c71ae04a371c68defdb45c39 /webGUI/pages/cpuinfo.html | |
| parent | dbf4264109f52fb7d1479d1119e39fddafd952bd (diff) | |
finished the webpage, and the main code is functioning correctly
Diffstat (limited to 'webGUI/pages/cpuinfo.html')
| -rw-r--r-- | webGUI/pages/cpuinfo.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/webGUI/pages/cpuinfo.html b/webGUI/pages/cpuinfo.html new file mode 100644 index 0000000..99579cb --- /dev/null +++ b/webGUI/pages/cpuinfo.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>CPU Information</title> + <link rel="stylesheet" href="../styles.css"> + <script src="main.js" defer></script> + +</head> + +<body> + <nav class="navigation"> + <a href="../index.html" class="home">HOME</a> + <h2>CPU Information</h2> + <a href="https://www.github.com/nasrlol" target="_blank">GITHUB</a> + </nav> + + <section class="content"> + <h1>CPU Information</h1> + </section> + + <footer> + <p>Created by <a href="https://www.github.com/nasrlol" target="_blank">nsrddyn</a>. All rights reserved © + 2024.</p> + </footer> +</body> + +</html>
\ No newline at end of file |
