-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (127 loc) · 5.28 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<div>
<h1>Aryan Agarwal</h1>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Linkedin: <a href="https://www.linkedin.com/in/aryan-a-he-him-96056a265/"
target="_blank">linkedin.com/in/aryan</a></p>
<p>Github: <a href="https://www.linkedin.com/in/aryan-a-he-him-96056a265/">github.com/in/aryan</a></p>
</div>
<table>
<tr>
<td><img src="IMG_6443.JPG" width="125px" height="150px" alt="Aryan"></td>
<td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi excepturi, deleniti
aspernaturinventore asperiores id libero nisi, molestiae officia vero, molestias pariatur labore esse saepe aut nihil tempore numquam possimus expedita dolores! Soluta sapiente blanditiis amet accusantium.
Aut maxime fugiat repudiandae eum. Pariatur, excepturi harum, officia ab maiores amet nihil nisi
blanditiis numquam nobis laboriosam expedita laborum molestias cupiditate iste sapiente veniam qui
sint aspernatur odio quae cum fugiat? Inventore, sed. Rem at vitae nisi laudantium vel natus ipsa
cumque incidunt iusto? Dolor corrupti in eum, optio pariatur quasi quos dolore commodi consectetur
quisquam. Nulla impedit ex cum inventore repellendus.
</td>
</tr>
</table>
<hr />
<section>
<h2>Education</h2>
<ul>
<li>Pimpri chinchwad college of Engineering</li>
<li>Agarwal vidya vihar</li>
</ul>
</section>
<hr />
<section>
<h2>Work Experience</h2>
<div>
<h3>Email Marketing Intern, AIMB</h3>
<p>June 2021 - July 2021</p>
<ul>
<li>Build the front-end website with the help of Wordpress, Wix and hosted it with the help of
Hostinger.
</li>
<li>Made the logo of the company and was responsible for handling the social media of the company.
</li>
</ul>
</div>
<div>
<h3>SME, Chegg</h3>
<p>Sept 2021 - Nov 2021</p>
<ul>
<li>Was responsible for solving and helping the student in Computer Science queries.</li>
<li>Helped more than 25 students with there doubts and lead to better understanding of subject.</li>
</ul>
</div>
</section>
<hr />
<section>
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
<li>JAVA</li>
<li>KOTLIN</li>
</ul>
</section>
<hr />
<section>
<h2>Projects</h2>
<ul>
<div>
<li>
<h3>News Feed </h3>
<p>An in-app news reading app which fetches news from an API and displays them in scrollable
fashion
and user can read the complete news by clicking on a particular news
</p>
<p>hosted: <a href="https://www.google.com">project is here</a></p>
</li>
</div>
<div>
<li>
<h3>memeOnly </h3>
<p>A meme sharing and fetching a new meme whenever next button is called from the attached API.
</p>
<p>hosted: <a href="https://www.google.com">Meme App</a></p>
</li>
</div>
<div>
<li>
<h3>GoGoStress Website</h3>
<p>A website that uses the Hamilton anxiety rating scale for checking the stress level of the
user
and based on his answers proper remedy is provided as per the user's mental state.</p>
<p>hosted: <a href="https://www.google.com">GoGoStress</a></p>
</li>
</div>
</ul>
</section>
<hr />
<section>
<h2>Frequently Asked Questions</h2>
<details>
<summary>what is ques1</summary>
<p> Ans1</p>
</details>
<details>
<summary>what is ques2</summary>
<p> Ans2</p>
</details>
<details>
<summary>what is ques3</summary>
<p> Ans3</p>
</details>
</section>
<hr />
<footer>
<p>© Aryan Agarwal 2023
</p>
</footer>
</div>
</body>
</html>