-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (83 loc) · 2.56 KB
/
index.html
File metadata and controls
86 lines (83 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>my site</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="images\me and kunjunni.jpg" alt="my profile picture"></td>
<td>
<h1>Ashwin S Krishna</h1>
<p><em>im a <strong>student</strong></em></p>
<p>im a coding enthusiast and love music. i love bikes and enjoy watching motogp races.<br>i probably
should go now
byeeee</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>Studied 1st grade to 12th grade at Christ Nagar Central School Trivandrum Kowdiar</li>
<li>Learnt piano at swathy thirunal sangeetha natya kala kendram Trivandrum</li>
<li>Learnt coding (python) from <a
href="https://www.udemy.com/course/complete-python-developer-zero-to-mastery/">Andrei
Neagoie</a></li>
<li>Learnt web development from <a
href="https://www.udemy.com/course/the-complete-web-development-bootcamp/">Angela Yu</a></li>
</ul>
<hr>
<h3>Some Important Milestones</h3>
<table border="1">
<tr>
<td>~2011</td>
<td>started learning keyboard hence starting my music journey</td>
</tr>
<tr>
<td>~2016</td>
<td>went for physical training classes which completely changed my physique and lifestyle</td>
</tr>
<tr>
<td>~2021</td>
<td>started to learn to code</td>
</tr>
</table>
<br>
<hr>
<h3>Skills</h3>
<table>
<tr>
<td>
<table>
<tr>
<td>Piano</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Guitar</td>
<td>⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>Python</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Web development</td>
<td>⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<hr>
<a href="hobbies.html">My Hobbies</a><br>
<a href="contact.html">Contact Me</a>
</body>
</html>