-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (72 loc) · 1.72 KB
/
index.html
File metadata and controls
73 lines (72 loc) · 1.72 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
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kanav's personal site</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td>
<a href="https://www.linkedin.com/in/knvgarg/"
><img src="images/kanav.png" alt="Kanav's profile pic" height="170"
/></a>
</td>
<td>
<h1>Kanav Garg</h1>
<p>
<em>Student at <strong>Thapar Institute of enineering and technology</strong>.</em>
</p>
<p>I am a sofftware engineer and I love coffee.</p>
</td>
</tr>
</table>
<hr noshade size="3" />
<h3>Education</h3>
<ul>
<li>Thapar Institute of engineer and technology</li>
<li>Vidyamandir Classes</li>
</ul>
<hr noshade>
<h3>My Hobbies</h3>
<table cellspacing="10">
<tr>
<td>Swimming</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Badminton</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Problem Solving</td>
<td>⭐⭐</td>
</tr>
</table>
<hr noshade />
<h3>This is a Table</h3>
<table>
<thead>
<th>Roll Number</th>
<th>Name</th>
</thead>
<tbody>
<tr>
<td>101803374</td>
<td>Kanav Garg</td>
</tr>
<tr>
<td>101803375</td>
<td>Pallavi Garg</td>
</tr>
<tr>
<td>101803384</td>
<td>Nandika Arora</td>
</tr>
</tbody>
</table>
<br>
<a href="contact.html">Contact Me</a>
</body>
</html>