-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
173 lines (173 loc) · 5.85 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
<!DOCTYPE html>
<html>
<head>
<title>Unnamalai Ramanathan - Portfolio</title>
<meta charset="utf-8" />
<meta
name="description"
content="This site gives an overview of the projects developed by Unnamalai and contact information."
/>
<!-- to optimize the contents displayed on a phone -->
<meta name="viewport" content="width=device-width initial-scale=1" />
<!-- Add favorite icon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon-16x16.png"
/>
<!-- Link to CSS file that resets all the styles in the page-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<!-- Link to import Source Sans Pro Google Font-->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Source+Sans+Pro:wght@300;400;700&display=swap"
/>
<!-- Link to CSS file that sets specified styles in the page-->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!--Header includes logo and main navigation-->
<header class="page-header">
<!--Add logo here-->
<div
class="page-header__item"
title="Personal logo of Unnamamalai Ramanathan,a text logo in camel-case letters that consists of my name."
></div>
<nav class="page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item"
>Home</a
>
</li>
<li role="presentation">
<a
href="work.html"
role="menuitem"
class="navigation-list__item navigation-list__item--active"
>Projects</a
>
</li>
</ul>
</nav>
</header>
<!--Main Content that shows the list of my completed Projects-->
<section>
<h1>List of Projects</h1>
<div class="projects-list">
<div class="projects-list__item">
<img
src="img/screenshots/tweet.png"
alt="Tweet"
style="width:100%;height:200px"
/>
<p>
This page allows to write short posts with a maximum length of 80
characters. It's written in Javascript. Additionally I have created
HTML and CSS templates.
</p>
<a href="https://rmpriya27.github.io/Tweet/tweet.html" target="_blank"
>Tweet</a
>
</div>
<div class="projects-list__item">
<img
src="img/screenshots/target_pointer.png"
alt="TargetPointer"
style="width:100%; height: 200px"
/>
<p>
The concept of this simple game is to help Tom catch Jerry by
tracking mouse clicks. It's written using Javascript, HTML and CSS.
</p>
<div>
<a
href="https://rmpriya27.github.io/Target_Pointer/"
target="_blank"
>Target_Pointer</a
>
</div>
</div>
<div class="projects-list__item">
<img
src="img/screenshots/pokedex.png"
alt="Pokedex"
style="width:100%; height: 200px"
/>
<p>
A small web application built using HTML, CSS, and JavaScript that
loads data from an external API and enables the viewing of data
points in detail.
</p>
<a href="https://unna27.github.io/loaddata-js-app/" target="_blank"
>Pokedex cards</a
>
</div>
<div class="projects-list__item">
<img
src="img/screenshots/meetapp.png"
alt="Meetapp"
style="width:100%; height: 200px"
/>
<p>
A serverless, progressive web application (PWA) built with React
using a test-driven development (TDD) technique. The application
uses the Google Calendar API to fetch upcoming events.
</p>
<a href="https://unna27.github.io/meet/" target="_blank">Meet App</a>
</div>
<div class="projects-list__item">
<img
src="img/screenshots/myflixapp.png"
alt="MyFlixApp"
style="width:100%; height: 200px"
/>
<p>
A complete web application built using full-stack Javascript
technologies.Client side application has been built using React that
provides users with access to information about different movies,
directors, and genres. Users will be able to sign up, update their
personal information, and create a list of their favorite movies.
</p>
<a
href="https://my-flix-client-h9zela9kw-unna27.vercel.app/ "
target="_blank"
>My Flix</a
>
</div>
</div>
</section>
<!-- Footer includes social media images-->
<footer class="page-footer">
<p>Find me on</p>
<div class="page-footer__socialmedia">
<a href="https://www.linkedin.com/in/unnarm27" target="_blank"
><img src="img/linkedin.svg" alt="Linkedin logo"
/></a>
<a href="https://github.com/Unna27" target="_blank"
><img src="img/github.svg" alt="Github logo"
/></a>
<a href="https://twitter.com/unnaweb27" target="_blank"
><img src="img/twitter.svg" alt="Twitter logo"
/></a>
</div>
</footer>
<!--add tota11y js file to check HTML accessibilities-->
<script src="js/tota11y.min.js"></script>
</body>
</html>