-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
62 lines (62 loc) · 2.06 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#pa{border: 10px dotted purple;}
#ha{border: 15px solid pink;}
</style>
</head>
<body>
<p style="text-align: center; font-size: xx-large;" id="pa">My portfolio</p>
<h2>Personal information</h2>
<img src="image/Cat.jpg" style="float: right; margin-right: 250px;" height="300px" id="ha" >
<h2 style="float: right; margin-right: 25px ;">Me as a cat</h2>
<table border="5px solid pink" style="font-size: large;" >
<tr>
<th>Name:</th><td>Wint Nadi</td>
</tr>
<tr>
<th>Date of birth:</th><td>28.5.2005</td>
</tr>
<tr>
<th>Phone no:</th><td>09-442627515</td>
</tr>
<tr>
<th>Email:</th><td>[email protected]</td>
</tr>
<tr>
<th>Address:</th><td>North Okkalapa</td>
</tr>
</table></div><hr>
<h2>Educational background</h2>
<ul>
<li>(2022) Passed Matriculation Exam</li><br>
<li>(2022-2023) Finish UIT's first year</li><br>
<li>(2023 Oct-Nov) Attending BIM's IT starter course</li>
</ul><hr>
<h2>Academic qualification</h2>
<ol type="i">
<li>Passed KET with distinction</li>
<li>Passed PET with merit</li>
<li>About to take IELTS</li>
<li>About to take Japanese N5</li>
</ol><hr>
<h2>Special skills</h2>
<ol type="A">
<li>Friendly</li>
<li>Coorporative</li>
<li>Hardworking</li>
</ol><hr>
<h2>Weak points</h2>
<ol type="a">
<li>Lack leadership skills</li>
<li>Have no work experiences</li>
</ol>
<div id="footer">
<p style="text-align: center; font-size: small;">My own creation</p>
</div>
</body>
</html>