-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex..html
More file actions
68 lines (66 loc) · 1.56 KB
/
index..html
File metadata and controls
68 lines (66 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Personal Website</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="tarun.png" ,alt="Tarun's Profile Picture"></td>
<td><h1>TARUN ROHIT SAI PITHANI</h1>
<p>Student of <a href="https://nitsri.ac.in/">NIT Srinagar</a></p>
<p>I am Python and Web Developer</p></td>
</tr>
</table>
<hr>
<h3>Projects Done</h3>
<ul>
<li>Snake Game</li>
<li>Rock Paper Scissor Game</li>
</ul>
<hr>
<h3>Study Details</h3>
<table border="1">
<thead>
<th>Academics</th>
<th>Year</th>
<th>Remarks</th>
</thead>
<tbody>
<tr>
<td>10th</td>
<td>2019</td>
<td>10 GPA</td>
</tr>
<tr>
<td>12th</td>
<td>2021</td>
<td>967 marks</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<h1>Skills</h1>
<table>
<tr>
<td>Python</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Web Development</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>C Programming</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
<hr>
<a href="hobbies.html">Hobbies</a>
<hr>
<a href="contactme.html">Contact Me</a>
</body>
</html>