-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (23 loc) · 909 Bytes
/
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
<html>
<head>
<meta charset="UTF-8">
<title>My First Project</title>
</head>
<body>
<h1>My Thoughts on Day 1</h1>
<p>Day 1 was was really exciting! I am definetly in the unconsious unconsious stage, but I am really excited to keep learning. </p>
<ul> <h2> Things I Learned Today </h2>
<li>Terminal</li>
<li>That VS Code is pretty cool</li>
<li>Terminal termanology (ls=list programs) (cd=changes directory) (touch=creates file)</li>
<li>GUI is pronounced "GOOEY" and it is a graphical user interface</li>
<li>Git is a tool and GitHub is a Git-server</li>
<li>I have a lot more to learn!!!!</li>
<p>git status</p>
<p>git add index.html</p>
<p>git commit -m "name of changes"</p>
<p>git push</p>
<p>git log = shows all commits</p>
</ul>
</body>
</html>