-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (53 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mahesh's perosal site</title>
</head>
<body>
<table>
<tr>
<td><img src="mahesh.jpeg" alt="Mahesh karhale img"></td>
<td>
<h1>Mahesh Karhale</h1>
<p><em>Student at <strong> <a href="https://www.iitm.ac.in/">Indian Institute of Technology</a>
</strong> </em></p>
</td>
</tr>
</table>
<p>I love coding and to play guitar.</p>
<hr>
<h3>Courses done</h3>
<ul>
<li>AS2050</li>
<li>AS2030</li>
</ul>
<h3>My hobbies</h3>
<ol>
<li>guitar</li>
<li>book reading</li>
</ol>
<h3>Skills</h3>
<table>
<tr>
<td>HTML </td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>CSS</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>javascript</td>
<td>⭐</td>
</tr>
<tr>
<td>Guitar</td>
<td>⭐⭐⭐⭐</td>
</tr>
</tr>
</table>
</body>
</html>