-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.38 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</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>
<form align="right">
<input type="search"placeholder="search...." required>
<input type="Submit" value="Search">
</form>
</header>
<main>
<h1>Welcome to My Personal Hub</h1>
<P>
This website is my personal space where I share information about my self, my interests, and my daily activities.
</P>
<h2> My Interests</h2>
<ul>
<li> Photography</li>
<li> Work under high presure</li>
<li> Provide safe and friendly environment in my work place</li>
</ul>
<h3> Gallary Preview</h3>
<img src="Images/photo.jpg" alt="Photography" width="300" style="margin-right:100px;">
<img src="Images/photo2.jpg" alt="photo of Ferdousi Park" width="300" height="200">
</main>
<footer>
<p>
I hope this pages gives you a better idea of who I am and what I do. Please feel free to explore the other pages to learn more about me. Thanks.
</p>
</footer>
</body>
</html>