-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
88 lines (88 loc) · 2.58 KB
/
portfolio.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
<!doctype html>
<html>
<head>
<title>Abhay Harpalani | Portfolio</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="portfolio.css"/>
<!-- adobe fonts -->
<link rel="stylesheet" href="https://use.typekit.net/jaw3icc.css">
</head>
<body>
<div class="main">
<div class="left">
<div class="header">
<h1>portfolio</h1>
</div>
<div class="left-text">
<p>
Hi! My name is Abhay, I'm a
sophomore computer engineering
student. I love making all sorts of
art using graphic design, creative
coding, and music as my mediums.
Click on any of my projects to
learn more about them.
</p>
</div>
</div>
<div class="right">
<div class="projects-header">
<h2>posters</h2>
</div>
<table class="projects-wrapper">
<tr>
<td class="project">
<a href="pr-poster-01.html"><img src="portfolio_assets/compressed/pr-poster-01-c.png"></a>
</td>
<td class="project">
<a href="pr-poster-02.html"><img src="portfolio_assets/compressed/pr-poster-02-c.png"></a>
</td>
<td class="project">
<a href="pr-poster-03.html"><img src="portfolio_assets/compressed/pr-poster-03-c.png"></a>
</td>
</tr>
<tr>
<td class="project">
<a href="pr-poster-04.html"><img src="portfolio_assets/compressed/pr-poster-04-c.png"></a>
</td>
</tr>
</table>
<div class="projects-header">
<h2>javascript projects</h2>
<p>click to view</p>
</div>
<table class="projects-wrapper">
<tr>
<td class="project">
<a href="pr-js-01.html"><img src="portfolio_assets/compressed/pr-js-01.jpg"></a>
</td>
<td class="project">
<a href="pr-js-02.html"><img src="portfolio_assets/compressed/pr-js-02.jpg"></a>
</td>
<td class="project">
<a href="pr-js-03.html"><img src="portfolio_assets/compressed/pr-js-03.jpg"></a>
</td>
</tr>
</table>
<div class="projects-header">
<h2>websites</h2>
</div>
<table class="projects-wrapper">
<tr>
<td class="project">
<a href="pr-web-01.html"><img src="portfolio_assets/compressed/pr-web-01.jpg"></a>
</td>
<td class="project">
<a href="pr-web-02.html"><img src="portfolio_assets/compressed/pr-web-02.jpg"></a>
</td>
<td class="project">
<img src="portfolio_assets/compressed/pr-web-03.jpg">
</td>
</tr>
</table>
</div>
</div>
</body>
</html>