forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
62 lines (61 loc) · 1.78 KB
/
home.html
File metadata and controls
62 lines (61 loc) · 1.78 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
<!DOCTYPE html>
<!-- your name and class at WPI (e.g. class of 2020) Note: Do not put any contact or personal information that you do not potentially want other people outside of this class to see.
your major(s) and minor(s)
previous computer science courses that you have taken at WPI
your experience with the following technologies and methods (none, some, a lot)
HTML
CSS
Java
JavaScript
Ruby
Python
unit testing -->
<html lang="en">
<head>
<link rel="stylesheet" href="styling.css" />
<link rel="stylesheet" href="home.css" />
<title>Michael: Home</title>
<meta charset="utf-8" />
</head>
<body>
<header >
<h1 class = "topTitle">Michael O'Connor</h1>
<ul class="navBar">
<li class="navLink"><a href="home.html">Home</a></li>
<li class="navLink"><a href="Education.html" >Education</a></li>
<li class="navLink"><a href="Work.html" >Work</a></li>
<li class="navLink"><a href="Other.html" >Other</a></li>
</ul>
</header>
<main>
<h2>Welcome Home</h2>
<ul>
<li class="page"> Home
<ul>
<li class="page"> Where you are now</li>
</ul>
</li>
<li class="page"> Education
<ul>
<li class="page"> Information about my educational history</li>
</ul>
</li>
<li class="page"> Work
<ul>
<li class="page"> Short resume of my career</li>
</ul>
</li>
<li class="page"> Other
<ul>
<li class="page"> Sources for assets and information used to build the website (and more!)</li>
</ul>
</li>
</ul>
</main>
<footer>
<h5>
Michael O'Connor<br>CS 4241 Webware<br>Assignment 1
</h5>
</footer>
</body>
</html>