-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (35 loc) · 1.67 KB
/
index.html
File metadata and controls
42 lines (35 loc) · 1.67 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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<title>First Web Page</title>
<link rel="stylesheet" href="style.ccs" />
<meta charset"utf-g" />
</head>
<body>
<header><h1>First Web Page</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a> </li>
<li><a href="Goals.html">Goals</a> </li>
<li><a href="https://github.com/imdjsarge" target ="_blank">My stuff on GitHub</a></li>
</ul>
</nav>
<div>
<h2>Lessons Learned</h2>
<p>I might be new to web developtment, but I've learned a lot so far.</p>
<h3>GitHub</h3>
<p>I've learned to manage code in repositories on GitHub. This allows me to be able to work on my projects anywhere. No more worries about losing a portable drive!</p>
<h3>Basic Html</h3>
<p>I've also learned to write some of the most common HTML tags, and to write HTML for sturucture not appearance. Some of the tags taht Iv'e learned include headings (< h1></h1>, < h2></h2>, < h3></h3>, etc), paragraphs, and lists. I've also learned to use special entity characters</p>
<h3>Favorite Things</h3>
<p>The things I like best about this class are:</p>
<ol>
<li>Writing code</li>
<li>Meeting new nerds!</li>
<li>Hanging out with Mary!!!</li>
</ol>
</div>
<footer><p><small>Copyright © 2015 by Sarge. </small></p>
<p><small>Contact me at <a href="mailto:rgallo001@my.hennepintech.edu">rgallo001@my.hennepintech.edu</a></p></small></footer>
</body>
</html>