-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
79 lines (71 loc) · 2.34 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Profile</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- Header -->
<div class="header">
<!-- Logo -->
<h1 class="logo">
<a href="index.html">Super Hero</a>
</h1>
<!-- Nav -->
<ul class="nav">
<button><a href="index.html">Home</a></button>
<button><a href="profile.html">Profile</a></button>
<button><a href="my-skill.html">My Skill</a></button>
</ul>
</div>
<!-- Body -->
<div class="profile">
<div class="profile-body">
<a>Contact Me</a>
</div>
<div class="profile-a">
<img src="img/me.jpg">
</div>
<div class="table-container">
<table class="table" border="10" width="50%">
<tr>
<td>Name.....</td>
<td>Ma Aye Zin Zin Aung</td>
</tr>
<tr>
<td>Birthday.....</td>
<td>28 / 1 /2001</td>
</tr>
<tr>
<td>Phone......</td>
<td>09-763 018 753</td>
</tr>
<tr>
<td>Gender......</td>
<td>Female</td>
</tr>
<tr>
<td>City / Township......</td>
<td>Yangon / Shwe Pyi Thar</td>
</tr>
<tr>
<td>Facebook.......</td>
<td><a href="https://www.facebook.com/ayezin.zinaung.9"title="Search"> Aye Zin Zin Aung</a></td>
</tr>
<tr>
<td>Gmail Sent.......</td>
<td><a href="mailto:[email protected]" title="Search"> Aye Zin Zin Aung</a></td>
</tr>
</table>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="container">
<p>Copyright © Web Junior Developer by Aye Zin Zin Aung.</p>
</div>
</div>
</div>
</div>
</body>
</html>