-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Unix Shell Commands</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<script type="text/javascript">
function Copy()
{
var strng = document.getElementById('#copy');
document.execCommand("Copy");
}
</script>
<h1>Hardcoded HTML Static Site</h1>
<p> This basic webpage was designed to teach me how to use HTML5 tags as well as help me learn some unix shell commands. </p>
<h2>Cheat Sheet</h2>
<table>
<tr>
<th>Command Name</th>
<th>Description</th>
<th>Example Usage</th>
</tr>
<tr>
<td>mkdir</td>
<td>Creates a folder/directory</td>
<td>mkdir src</td>
</tr>
<tr>
<td>ls</td>
<td>Lists all of the files in the current directory</td>
<td>ls</td>
</tr>
<tr>
<td>cd</td>
<td>Allows you to change directories</td>
<td>cd ..</td>
</tr>
<tr>
<td>cp</td>
<td>Copies a specific files into a directory</td>
<td>cp exampleFile.txt backups</td>
</tr>
<tr>
<td>rm</td>
<td>Deletes a file from the current directory</td>
<td>rm exampleFile.txt</td>
</tr>
</table>
<p id="copy">This will
Show you how to become a
l33t hax0r
</p>
<p>
<img src="https://htse.kapilarya.com/FIX-Cannot-Install-Remote-Server-Administration-Tools-RSAT-In-Windows-10-1.png" alt="Hax0r" />
You never know if you are safe on the internet... Read more about dangerous trojans <a href="https://en.wikipedia.org/wiki/Remote_administration_software">Click here to read more.</a></p>
</body>
</html>