Skip to content

Commit d25d0fb

Browse files
authored
Add initial cv website files
1 parent ff5e3e9 commit d25d0fb

File tree

4 files changed

+125
-0
lines changed

4 files changed

+125
-0
lines changed

circle-cropped-2.png

1.49 MB
Loading

contact.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Contact Me</title>
7+
</head>
8+
9+
<body>
10+
<h1>My Contact Details</h1>
11+
12+
13+
<p><a href="https://www.linkedin.com/in/snigdha-singh-166838184/">My LinkedIn profile</a></p>
14+
<p>Phone number: (+91) 99304 89069</p>
15+
16+
<form action="mailto:[email protected]" method="post" enctype="text/plain">
17+
<label for="">Your Name:</label>
18+
<input type="text" name="yourName" value=""><br>
19+
<label for="">Your Email:</label>
20+
<input type="email" name="yourEmail" value=""><br>
21+
<label for="">Your Message:</label><br>
22+
<textarea name="yourMessage" rows="10" cols="30"></textarea><br>
23+
<label for="">Submit</label>
24+
<input type="submit" name="" value="">
25+
</form>
26+
27+
</body>
28+
29+
</html>

hobbies.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>My Hobbies</title>
7+
</head>
8+
9+
<body>
10+
<h1>My Hobbies</h1>
11+
12+
<p>Playing football</p>
13+
<p>Reading books</p>
14+
<p>Cooking</p>
15+
<p>Swimming</p>
16+
17+
</body>
18+
19+
</html>

index.html

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Snigdha's Personal Website</title>
7+
</head>
8+
9+
<body>
10+
<table cellspacing="20">
11+
<tr>
12+
<td><img src="images/circle-cropped-2.png" alt="Snigdha's profile photo" height="200" width="200"></td>
13+
<td>
14+
<h1>Snigdha Singh</h1>
15+
<p><em>Student at PICT<br />
16+
<a href="https://www.hackerrank.com/snigdha920">2 ★ at HackerRank</em></a>
17+
<p>I am in my second year of engineering at PICT, Pune.
18+
I am learning various things like web development, computer vision, and more.
19+
I am trying to figure out where my interest lies.</p>
20+
</td>
21+
</tr>
22+
</table>
23+
<hr>
24+
<h3>Education</h3>
25+
<ul style="list-style-type:disc">
26+
<li>Gokuldham High School and Junior College, ICSE</li>
27+
<li>Thakur Vidyamandir High School and Junior College, HSC</li>
28+
<li>Pune Institute of Computer Technology, B.Tech</li>
29+
</ul>
30+
<hr>
31+
<h3>Academic Background</h3>
32+
<table cellspacing="10">
33+
<thead>
34+
<th>Academic Year</th>
35+
<th>Board/Degree</th>
36+
<th>Score</th>
37+
</thead>
38+
<tbody>
39+
<tr>
40+
<td>2015-2016</td>
41+
<td>ICSE</td>
42+
<td>93.5%</td>
43+
</tr>
44+
<tr>
45+
<td>2017-2018</td>
46+
<td>HSC(10+2)</td>
47+
<td>95.3%</td>
48+
</tr>
49+
<tr>
50+
<td>Till 2020</td>
51+
<td>B.Tech in CS</td>
52+
<td>9.84 GPA</td>
53+
</tr>
54+
</tbody>
55+
</table>
56+
<hr>
57+
<h3>Skills</h3>
58+
<table cellspacing="10">
59+
<tr>
60+
<td>C++</td>
61+
<td>⭐️⭐️⭐️⭐️</td>
62+
</tr>
63+
<tr>
64+
<td>C</td>
65+
<td>⭐️⭐️⭐️</td>
66+
</tr>
67+
<tr>
68+
<td>Web Development</td>
69+
<td>⭐️</td>
70+
</tr>
71+
</table>
72+
<hr>
73+
<a href="hobbies.html">My Hobbies</a>
74+
<a href="contact.html">Contact Me</a>
75+
</body>
76+
77+
</html>

0 commit comments

Comments
 (0)