-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLab_No_2.html
More file actions
54 lines (54 loc) · 1.23 KB
/
Lab_No_2.html
File metadata and controls
54 lines (54 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Curriculum Vitae</title>
</head>
<body>
<h1>Curriculum Vitae in tabular format</h1>
<table border="1px" width="50%">
<tr>
<th>Name</th>
<td>Atit Bimali</td>
<th rowspan="4">
<img
src="Images/Profil_photo.webp"
alt="Atit Bimali"
height="200px"
/>
</th>
</tr>
<tr>
<th>Date of Birth</th>
<td>2001 January 1</td>
</tr>
<tr>
<th>Email</th>
<td>atitbimali10@gmail.com</td>
</tr>
<tr>
<th>Phone</th>
<td>9824393773</td>
</tr>
<tr>
<th>Education</th>
<td colspan="2">
<ol>
<li>Bachelor's in Computer Science and technology</li>
<li>+2 in Science Faculty</li>
</ol>
</td>
</tr>
<tr>
<th>Skills</th>
<td colspan="2">
<ul type="square">
<li>Python3, HTML, CSS, JavaScript</li>
<li>Azure, Aws, Jenkins, GitHub</li>
<li>Docker, CI/CD, Rest API</li>
<li>Postman, Burp Suite, Apache2, Nginx</li>
</ul>
</td>
</tr>
</table>
</body>
</html>