-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
24 lines (21 loc) · 799 Bytes
/
Copy pathabout.html
File metadata and controls
24 lines (21 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Electerm</title>
<link rel="stylesheet" href="style.css">
<script src="./javascript/about.js"></script>
</head>
<body>
<div class="about">
<h1>About Electerm</h1>
<h3>Version: <span id="version"></span> on <span id="os_release"></span></h3>
<img width="300" height="300" id="app-icon">
<p>Electerm is an Electron-based terminal emulator built with xterm.js and Electron.</p>
<p>Author: Chris Rios</p>
<p>License: MIT</p>
<button id="src-link"><p>Source Code</p></button>
</div>
</body>
</html>