-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 2.4 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
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="This is my new site.">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Krish's Site</title>
</head>
<body>
<img src="cat.jpg" height="300" width="300">
<h1>Krish Tiwari</h1>
<p><em>Sophmore in <strong> <a href="https://chennai.vit.ac.in/">VIT Chennai</a> </strong> and <strong> <a href="https://www.iitm.ac.in/">IIT Madras</a> </strong></em></p>
<p>I am an python developer. I love coffee and I like to cook my own food</p>
<hr>
<h3>Books and Teaching</h3>
<ul>
<li>Book 1</li>
<li>Book 2</li>
</ul>
<hr>
<h3>My hobbies</h3>
<ol>
<li>Playing games</li>
<li>Learning new programming languages</li>
</ol>
<hr>
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Years</th>
<th>Work</th>
</tr>
</thead>
<tr>
<td>2020-2022</td>
<td>High School</td>
</tr>
<tr>
<td>2022-2026</td>
<td>College</td>
</tr>
</table>
<hr>
<h3>Skills</h3>
<table border="1">
<tr>
<td>
<table>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Web Development</td>
<td>⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>Flutter</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Cooking</td>
<td>⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
<h3>Contact Me</h3>
<a href="contact.html">Here</a>
</body>
</html>