-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVocab.html
56 lines (54 loc) · 1.58 KB
/
Vocab.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="gtheme.css">
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
</head>
<body>
<img src="./GImages/GitFitLogo.png"> </img>
<h1>
All the strange words definitions, A-Z.
</h1>
<h3>
D
</h3>
<ul>
<a name="Directory"></a>
<li>Directory- A fancy way of saying folder.</li>
</ul>
<h3>
P
</h3>
<ul>
<a name="Path"></a>
<li>Path- A path or file path is like a file's address. An example would be that this file's path on my computer is <code>./Documents/Github/Web/mcode10.github.io/Vocab.html</code></li>
<a name="Permissions"></a>
<li>Permissions- These say who can do what to a file. Can the user <a href="./Vocab.html#Read">read</a> the file? Can the user <a href="./Vocab.html#Write">write</a> to the file?</li>
</ul>
<h3>
R
</h3>
<ul>
<a name="Read"></a>
<li>Read- To open and inspect a file. Note that you are <b>not</b> modifing the file.</li>
</ul>
<h3>
S
</h3>
<ul>
<a name="Shell"></a>
<li>Shell- An application that uses the command-line instead of graphics. It is often more powerful than graphical apps.</li>
</ul>
<h3>
W
</h3>
<ul>
<a name="Write"></a>
<li>Write- To modifiy a file, and save your changes.</li>
</ul>
<section class="button">
<button onclick="location.href='./index.html'">
🏠 Home
</button>
</section>
</body>