-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.html
More file actions
89 lines (78 loc) · 2.02 KB
/
about-me.html
File metadata and controls
89 lines (78 loc) · 2.02 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>about me</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="contact.html">Contact Me</a></li>
<li><a href="gallary.html"> My Gallary</a></li>
</ul>
</nav>
</header>
<main>
<h1>About Me</h1>
<p>
I am a motivated person who enjoys learning new things and improving my skills.
I like exploring technology and working on personal projects in my free time.
</p>
<p>
This website is part of my learning journey. Through this page,
I want to share more about my self, and my goals for the future.
</p>
<h2> Top three my inspirations</h2>
<ol>
<li> William Shakespeare: for his timesless literary works and creativity.</li>
<li> Mari Curie:for her dedication to science and discovery.</li>
<li> My sister:for her courage and fight for education.</li>
</ol>
<h3> My favorite foods </h3>
<section>
<ul>
<li> Pizza</li>
<li>Biryani</li>
<li>Manto</li>
</ul>
</section>
<artical>
<h3> My favorite items</h3>
<table border="2"
<tr>
<th> Category</th>
<th> Item</th>
<th> Reason</th>
</tr>
<tr>
<td> Book</td>
<td> One Hundred Years of Solitude</td>
<td> Classic and novel story</td>
</tr>
<tr>
<td> Movie</td>
<td> The Pursuit of Happyness</td>
<td> Motivational ad heartwarming</td>
</tr>
<tr>
<td> Music</td>
<td>Classical</td>
<td> Relaxing and inspiring</td>
</tr>
</table>
</artical>
</main>
<footer>
<p>
I live in Baghlan Province and I enjoy to meet new people. I am always curious and eager to learn new things.</p>
<p><em>"This Page was written by [<strong>Tahera Hussaini</strong>]"</em></p>
<p align="right">
<a href="index.html"> Back to Home page</a>
</p>
</footer>
</body>
</html>