diff options
| author | Kumar Priyansh <[email protected]> | 2018-11-13 12:28:35 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2018-11-13 12:28:35 +0530 |
| commit | 997e64e900e92669055d72b24575407544635086 (patch) | |
| tree | d624aadb49076797e5ce9aa1fbc95b0c5a527944 /index.html | |
| parent | b9b67f24f6043e5f7658e6a8601af4d09e7783b0 (diff) | |
| download | aboutscreen-997e64e900e92669055d72b24575407544635086.tar.xz aboutscreen-997e64e900e92669055d72b24575407544635086.zip | |
Added files via GIT
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..87fc305 --- /dev/null +++ b/index.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>About This PC</title> + <link rel="stylesheet" href="css/style.css"> + <link rel="stylesheet" href="css/all.css"> +</head> +<body> + <div class="bgcontainer"> + <img src="images/logo.png" class="logo"> + <h1 class="title">BackSlash Linux Sven</h1> + <p class="description">Designed for humans, designed by humans...</p> + <div class="info"> + <p class="ram"><span id="ram"></span> GB Total RAM</p> + <p class="cpu"><span id="speed"></span> GHz <span id="manufacturer"></span> <span id="model"></span> CPU</p> + <p class="processor"><span id="cores"></span> Core, <span id="type"></span> based processor</p> + <p class="res"><span id="resx"></span> x <span id="resy"></span> <span id="display"></span></p> + <p class="graphics"><span id="graphics"></span></p> + </div> + <div class="links"> + <p><a target="_blank" href="https://docs.backslashlinux.com"><i class="fas fa-external-link-alt"></i> Documentation</a></p> + <p><a target="_blank" href="https://www.backslashlinux.com/help-center"><i class="fas fa-external-link-alt"></i> Get Support</a></p> + <p><a target="_blank" href="https://backslashlinux.boards.net/board/1/general-discussion"><i class="fas fa-external-link-alt"></i> Community Forums</a></p> + </div> + <div class="copyright"> + <p>© 2016-2018, BackSlash Linux. All rights reserved.<br></p> + </div> + <button id="close">Close App</button> + </div> + <script>window.$ = window.jQuery = require('jquery');</script> + <script src="script.js"></script> +</body> +</html>
\ No newline at end of file |
