-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
117 lines (104 loc) · 4.07 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<!-- Heading (Contact Info)-->
<div>
<h1>Adarsh Raj</h1>
<p>Contact: <a href="abcd.com">[email protected]</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/adarsh-raj-vats2002/" target="_blank">adarsh-raj-vats2002</a></p>
<p>Github: <a href="https://github.com/RA2211003010031" target="_blank">RA2211003010031</a></p>
<p>Education : <a href="#education">Go to Educational Details</a></p>
</div>
<!-- Profile and About -->
<table>
<tr>
<td>
<img src="profile1.jpg" alt="Adarsh Raj Pic" height="150" width="150">
</td>
<td>
Hello,<br>I am a passionate coder with currently being in learning phase only. I am pursuing Bachelor of Technology degree from SRM Institute, KTR, Tamil Nadu, in Computer Science. I want to be a Software Engineer in one of my dream companies. Let's see how it goes. See you guys again. Thanks for checking this project. <br> Thanks again.
</td>
</tr>
</table>
<!-- Educational Details -->
<section>
<h2 id="education">Education</h2>
<ul>
<li>10th from Agrasen DAV Public School (CBSE)</li>
<li>12th from VJ International School (CBSE)</li>
<li>Pursuing Bachelor from S.R.M. Institute in Computer Science</li>
</ul>
</section>
<!-- Skills Details -->
<section>
<h2>
Skills
</h2>
<ul>
<li>HTML (Learning)</li>
<li>CSS (Learning)</li>
<li>C (Learning)</li>
<li>C++ (Learning)</li>
<li>JAVA (Learning)</li>
<li>PYTHON (Learning)</li>
</ul>
</section>
<!-- Achievements Details -->
<section>
<h2>Achievements</h2>
<ul>
<li>In Progress</li>
</ul>
</section>
<!-- Projects Done -->
<section>
<h2>Projects</h2>
<ul>
<li>In Progress</li>
</ul>
</section>
<!-- FAQs -->
<section>
<h2>
Frequently Asked Questions
</h2>
<details>
<summary>Question 1: What is your name?</summary>
<p>
My name is Adarsh Raj. And I'm also known as Vatsh.
</p>
</details>
<details>
<summary>Question 2: How you preparing for cracking your dream companies?</summary>
<p>
So, first of all, I belong to a middle class family. And so, I don't want to waste my parent's money in online certification courses. I'm trying to study and learn through platforms like youtube, google, etc.. Also, I keep me mostly engaged in doing projects now, because I believe that projects will make you understand better the use and flow of codes and tags.
</p>
</details>
<details>
<summary>Question 3: What are your dream companies?</summary>
<p>
Following are the companies I want to get placed in:
<br>1. Google
<br>2. Meta
<br>3. Adobe
<br>4. Microsoft
<br>5. ...
<br><br>This list keeps going....
</p>
</details>
</section>
<!-- Copyright Info (Footer) -->
<footer>
<p>
© 2023 Adarsh Raj. All rights reserved.
</p>
</footer>
</div>
</body>
</html>