-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My personal website</title>
</head>
<body>
<h1>ANURAG GOEL</h1>
<hr>
<p><em><strong>A professional nobody</strong></em></p>
<p>I am a student in IIIT bhubaneswar and I have just started this web dev course and it gives me these silly challenges. </p>
<hr>
<h3><a href="hobbies.html" target="_blank">My hobbies</a></h3>
<hr>
<h3><a href="Contact.html" target="_blank">Contact Me</a></h3>
<hr>
<table border=1 padding=10px>
<thead>
<td>YEARS</td>
<td>WORK</td>
</thead>
<tbody>
<td>2010-2020</td>
<td>SUCKED</td>
</tbody>
</table>
<table border=1>
<thead>
<td>Skills</td>
<td>Rating</td>
</thead>
<tr>
<td>Coding</td>
<td><img src="images/star.png" width=20px height=20px></td>
</tr>
<tr>
<td>Cricket</td>
<td><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px></td>
</tr>
<tr>
<td>Doing meaningless shit</td>
<td><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px><img src="images/star.png" width=20px height=20px></td>
</tr>
</table>
</body>
</html>