-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (80 loc) · 2.28 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
80
81
82
83
84
85
<!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>My Personal Site</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<table>
<tr>
<td><img class="profile-image" src="myimage.jpeg" alt="profile-img"></td>
<td>
<h1 class="name">Abhinesh Dhiman</h1>
<p class="normal"><em>Software Engineer at <strong>To The New Noida</strong> and a <strong><a
href="https://abhineshabhidhiman.wixsite.com/website" target="_Blank">Tech
Blogger</a></strong>.</em></p>
<p class="normal">I am Drupal and Web Developer.</p>
</td>
</tr>
</table>
<hr>
<h1 class="heading">Favourite Books</h1>
<ul class="alphabetlist">
<li>Php -7 Full oop concepts</li>
<li>Learn Java Script for beginners</li>
<li>Html 5</li>
</ul>
<hr>
<p class="heading"><a href="hoobies.html" target="_Blank">My Hobbies</a></p>
<p class="heading"><a href="contact-me.html" target="_Blank">Contact Me</a></p>
<hr>
<h1 class="heading">Qualifications</h1>
<table>
<thead>
<th>Year</th>
<th>Level</th>
<th>Board</th>
</thead>
<tbody>
<tr>
<td>2014</td>
<td>Matriculation</td>
<td>ICSE</td>
</tr>
<tr>
<td>2016</td>
<td>+2</td>
<td>HP</td>
</tr>
<tr>
<td>2020</td>
<td>Graduation</td>
<td>USET</td>
</tr>
</tbody>
</table>
<hr>
<h1 class="heading">Skills</h1>
<table>
<tr>
<td>Drupal Development</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Html</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Php</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Twig</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</body>
</html>