-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (72 loc) · 2.04 KB
/
index.html
File metadata and controls
74 lines (72 loc) · 2.04 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
<!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>ரா Personal Web Page</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td>
<img src="https://t4.ftcdn.net/jpg/03/03/62/45/240_F_303624505_u0bFT1Rnoj8CMUSs8wMCwoKlnWlh5Jiq.jpg" alt="profile picture">
</td>
<td>
<h1>Rajkumar</h1>
<p><em>Specialist @</em><strong>Robert Bosch</strong></p>
<p>Also Owner of <em>SR Thugil Aadaiyagam</em></p>
<a href="https://inaiyakavi.blogspot.com/">My Blog</a>
</td>
</tr>
</table>
<hr>
<h3>My Experience</h3>
<table>
<thead>
<tr>
<th>Company</th>
<th>Role</th>
<th>Experience</th>
</tr>
</thead>
<tbody>
<tr>
<td>Robert Bosch</td>
<td>Associate Software Engineer</td>
<td>3 Years</td>
</tr>
<tr>
<td>Robert Bosch</td>
<td>Software Engineer</td>
<td>2 Years</td>
</tr>
</tbody>
</table>
<hr>
<h3>Personal Interests</h3>
<table>
<tr>
<td>Painting</td>
<td>★★★★★</td>
</tr>
<tr>
<td>Coding</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>Shopping</td>
<td>★★☆☆☆</td>
</tr>
</table>
<hr>
<h3>Hobbies</h3>
<ol>
<li>Poetry Writing</li>
<li>Reading Books</li>
<li>Crafting</li>
</ol>
<hr>
<a href="contact.html">Contact Us</a>
</body>
</html>