-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio.html
More file actions
48 lines (41 loc) · 1.08 KB
/
Portfolio.html
File metadata and controls
48 lines (41 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Ian Chan</title>
<link rel="stylesheet" type="text/css" href="stylePortfolio.css">
</head>
<body>
<header>
<div class ="header">
<nav>
<ul>
<li id = "firstheader"> <a href="index.html">Ian C</a></li>
<li >Portfolio</li>
<li><a href="PersonalProjects.html">Personal Projects</a></li>
<li><a href="Academia.html">Academia</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<div class = "container">
<h1>In Progress</h1>
</div>
<div id= "aboutListAll">
<div class="aboutList">
<h3> CSC RC4 IT team</h3>
<p> I am currently building a website for RC4 that will serve as the Residential College's, using primarily REACT and NODE.JS . It's main functions include:</p>
<ul>
<li>Contain a calendar of events</li>
<li>Allow booking of venues</li>
<li>Contain important infromation about the RC</li>
<li>Allow logins with different access and priority levels</li>
</ul>
</div>
</div>
</section>
<footer>
<p>Ian C, Copyright ©2019</p>
</footer>
</body>
</html>