-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (71 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Unnat's Personal Site</title>
</head>
<body>
<table cellspacing = '10'>
<tr>
<td><img src="Images/profile_image.png" alt="Unnat Profile image"></td>
<td>
<h1>Unnat Gupta</h1>
<p><em>Engineering Student</em></p>
<p>I am an Engineering Student at NIT Kurukshetra and an aspiring money-maker.</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>DPS Sushant Lok</li>
<li>NIT Kurukshetra</li>
</ul>
<!-- <h3>My Hobbies</h3>
<ol>
<li>Drumming</li>
<li>Formula Racing</li>
<li>Music</li>
</ol> -->
<h3>Skills</h3>
<table>
<tr>
<td>
<table cellspacing = '5'>
<!-- <thead>
<th>Skills</th>
<th>Proficiency</th>
</thead> -->
<tr>
<td>Studying</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Drumming</td>
<td>⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<!-- <thead>
<th>Skills</th>
<th>Proficiency</th>
</thead> -->
<tr>
<td>Coding</td>
<td>⭐</td>
</tr>
<tr>
<td>Procastinating</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<a href="hobbies.html">My Hobbies</a>
<a href="contact-me.html">Contact Me</a>
</body>
</html>