-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclassprojects.html
More file actions
65 lines (64 loc) · 3.41 KB
/
classprojects.html
File metadata and controls
65 lines (64 loc) · 3.41 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en-US">
<!--Personal Project Portfolio by Adam Carnicle-Maile, Class Projects Page-->
<head>
<title>Class Projects</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Class Projects</h1>
</header>
<nav class="nav1">
<ul>
<li><a href="index.html" target="_self" title="About Me">About Me</a></li>
<li><a href="resume.html" target="_self" title="Resume">Resume</a></li>
<li><a href="clubs.html" target="_self" title="Clubs">Clubs</a></li>
<li><a href="classprojects.html" target="_self" title="Class Projects">Class Projects</a></li>
<li><a href="forms.html" target="_self" title="Forms">Forms</a></li>
</ul>
</nav>
<div class="container">
<aside class="content1">
<nav class="projectnav">
<ul>
<li><a href="Project 1/Pair Project.html" target="_blank" title="Forms">Project 1</a></li>
<li><a href="Project 2/Unit 5 Pair Project/index.html" target="_blank" title="Forms">Project 2</a></li>
<li><a href="Project 3/Lakes Aquarium/index08.html" target="_blank" title="Forms">Project 3</a></li>
</ul>
</nav>
</aside><!--end content1-->
<section class="content2">
<div class="subcontent2">
<p>
These are some of my class projects I have had in my Beginning Webpage Development class.
You can gauge how far my skills and capabilities have come along by comparing the site you are on now to those old sites.
</p>
<p>
The first project is the very first pair project we did in class, within the first weeks of the class beginning.
At the time we did not know how to use css, so it was a very bare bones project.
</p>
<p>
The second project was another pair project with the goal of creating multiple pages for a site, then moving between those pages like you would a normal website.
</p>
<p>
The final project is a project that was worked on throughout the entire term.
Throughout each unit this site was edited and had things added based off of what was learned in class.
</p>
</div><!--end subcontent2-->
</section><!--end content2-->
</div><!--end container-->
<footer>
<nav class="nav2">
<ul>
<li><a href="index.html" target="_self" title="About Me">About Me</a></li>
<li><a href="resume.html" target="_self" title="Resume">Resume</a></li>
<li><a href="clubs.html" target="_self" title="Clubs">Clubs</a></li>
<li><a href="classprojects.html" target="_self" title="Class Projects">Class Projects</a></li>
<li><a href="forms.html" target="_self" title="Forms">Forms</a></li>
</ul>
</nav>
</footer>
</body>
</html>