-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
210 lines (157 loc) · 6.45 KB
/
work.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!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" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet" />
<link rel="stylesheet" href="static/css/main.css"/>
<link rel="stylesheet" href="static/css/media.css"/>
<link rel="stylesheet" href="static/css/items_grid.css"/>
<title>JAGADEESH P
| My Portfolio</title>
</head>
<body>
<header id="header-inner">
<div class="container">
<!-- Navbar -->
<nav id="main-nav">
<a href="">
<img src="static/img/logo.png" alt="Logo" id="logo">
</a>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="work.html" class="current">Work</a>
</li>
<!-- <li>
<a href="contact.html">Contact</a>
</li> -->
<li>
<a href="static/resume/JAGADEESH P RESUME.pdf" download="JAGADEESH P RESUME">RESUME</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Section A: Gallery -->
<section id="work-a" class="text-center py-3">
<div class="container">
<h2 class="section-title">
My Work
</h2>
<div class="bottom-line"></div>
<p class="lead">Check out some of my projects</p>
<!-- All Items -->
<div class="item">
<div class="item-image">
<img src="static/img/10.png" alt="item-1">
</div>
<div class="item-text">
<div class="item-text-wrap">
<p class="item-text-category">
Website
</p>
<h2 class="item-text-title">
Cloud-Enhanced Learning Management System (LMS)
</h2>
</div>
</div>
</div>
<div class="item">
<div class="item-image">
<img src="static/img/items/windenergy.png" alt="item-1">
</div>
<div class="item-text">
<div class="item-text-wrap">
<p class="item-text-category">
Website
</p>
<h2 class="item-text-title">
Predicting The Energy Output Of Wind Turbine
</h2>
</div>
</div>
</div>
<!--
<div class="item">
<div class="item-image">
<img src="static/img/items/portfolio.PNG" alt="item-1">
</div>
<div class="item-text">
<div class="item-text-wrap">
<p class="item-text-category">
website
</p>
<h2 class="item-text-title">
ADMISSION
form
</h2>
</div>
</div>
</div>
-->
<div class="item">
<div class="item-image">
<img src="static/img/items/calculatorapp.png" alt="item-1">
</div>
<div class="item-text">
<div class="item-text-wrap">
<p class="item-text-category">
Website
</p>
<h2 class="item-text-title">
<a href="https://jagadeeshpj.github.io/Calculator-using-ReactJS/" target="__blank">Calculator App-using ReactJS</a>
</h2>
</div>
</div>
</div>
<div class="item">
<div class="item-image">
<img src="static/img/items/morsecode.png" alt="item-1">
</div>
<div class="item-text">
<div class="item-text-wrap">
<p class="item-text-category">
Python Project
</p>
<h2 class="item-text-title">
Morse Code Translator Using Python
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="main-footer">
<div class="footer-content container">
<p>
Copyright © 2024 All Rights Reserved
</p>
<div class="social">
<a href="https://github.com/jagadeeshpj" target="__blank" style="color: #fff;">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/p-jagadeesh-22923b18b/" target="__blank" style="color: #fff;">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://www.instagram.com/jagadeesh2001/" target="__blank" style="color: #fff;">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.facebook.com/jagadeesh.PJ.13/" target="__blank" style="color: #fff;">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</footer>
<script src="static/js/typewriter.js"></script>
</body>
</html>