-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.12 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ragul Command Prompt</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Terminal Simulator Project</h1>
<p class="description">
A terminal simulator with basic commands like <code>ls</code>, <code>cd</code>, <code>pwd</code>, and <code>exit</code> in a GUI environment.
</p>
<!-- Screenshot Section -->
<div class="screenshot-section">
<h2>Terminal Simulator in Action:</h2>
<img src="img.png" alt="Terminal Simulator Screenshot" class="screenshot">
</div>
<h2>Features:</h2>
<ul>
<li><code>ls</code> to list files in the current directory.</li>
<li><code>cd <em>directory_name</em></code> to change the current directory.</li>
<li><code>pwd</code> to show the current directory path.</li>
<li><code>exit</code> to close the terminal.</li>
</ul>
</div>
</body>
</html>