-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworks.html
120 lines (102 loc) · 4.74 KB
/
works.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolio</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="./other/mystyle.css">
<link rel="shortcut icon" type="image/x-icon" href="./other/favicon.ico">
</head>
<body>
<div class="whole">
<div class="nav">
<!-- <div class='logo'>
<i class="fab fa-github fa-2x"></i>
</div> -->
<div class="logoLink">
<a href="index.html">
<div class="logoimg">
</div>
</a>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
<button id="button" onClick='menu()' class='hamburger-icon'>
<i class="fas fa-bars fa-2x"></i>
</button>
<div id='menu' class="mobile-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
</div>
<div class="port-content">
<div class="content-tile">
<div class="content">
<h2>My Github Stuff</h2>
<br/>
<a href="https://github.com/vd1992">My Github</a>
</div>
</div>
<div class="content-tile">
<div class="content">
<h2>SAIT Coursework Repos</h2>
<br/>
<a href="https://github.com/vd1992/sait-js">SAIT JavaScript Course</a>
<a href="https://github.com/vd1992/Day9Project">HTML+CSS+JavaScript Course Project</a>
<a href="https://github.com/vd1992/cpnt-201-group-assignment">SASS Group Assignment</a>
</div>
</div>
<div class="content-tile">
<div class="content">
<h2>Fun Learning</h2>
<br/>
<a href="https://github.com/vd1992/ProjectEuler">Project Euler-Fun With Math</a>
<a href="https://vd1992.github.io/jsLibraryPractice/">Trying JavaScript Libraries</a>
<a href="https://github.com/vd1992/react-adding-on">Integrating React into a Page and Learning</a>
<a href="https://create-react-app-owaveyx4z.now.sh/">React tic-tac tutorial deployment</a>
</div>
</div>
<div class="content-tile">
<div class="content">
<h2>Widgets and Such</h2>
<a href="https://vd1992.github.io/miniquiz/index.html">Mini Quiz</a>
<a href="https://vd1992.github.io/colorPick/">Random Colors</a>
<a href="https://vd1992.github.io/LyricFetcher/">Lyric Fetcher with lyrics.ovh API</a>
</div>
</div>
<div class="content-tile">
<div class="content">
<h2>Personal</h2>
<a href="http://ec2-184-72-150-18.compute-1.amazonaws.com">Laravel app hosted with Amazon EC2</a>
<a href="http://35.202.180.148">Peters' responsiveness redesign with WordPress</a>
<a href="https://locallibrary-vd.now.sh/">ExpressJS+MongoDB tutorial webapp, hosting may be slow</a>
</div>
</div>
<div class="content-tile">
<div class="content">
<h2>Professional</h2>
<a href="http://whatsqueerinyyc.ca/">CCIS outreach website</a>
</div>
</div>
</div>
<div class="footer">
<div class='footer-content'>
<i class="fab fa-facebook-f fa-2x"></i>
<a href="https://github.com/vd1992"><i class="fab fa-github fa-2x"></i></a>
<a href="https://ca.linkedin.com/in/vachan-dhillon-31166691"><i class="fab fa-linkedin fa-2x"></i></a>
</div>
</div>
</div>
</body>
<script src="other/scripts.js"></script>
</html>