-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 1018 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (24 loc) · 1018 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>My Personal Website</title>
</head>
<body style="font-family: Arial, sans-serif; margin:0; padding:0;">
<header style="background-color:#4CAF50; color:white; padding:10px; text-align:center;">
<h1>Welcome to My Website</h1>
<nav>
<a href="index.html" style="margin:0 15px; color:white; text-decoration:none;">Home</a>
<a href="about.html" style="margin:0 15px; color:white; text-decoration:none;">About Me</a>
<a href="gallery.html" style="margin:0 15px; color:white; text-decoration:none;">Gallery</a>
<a href="contact.html" style="margin:0 15px; color:white; text-decoration:none;">Contact</a>
</nav>
</header>
<main style="padding:20px;">
<h2>Hello! I am Ishanth</h2>
<p>Welcome to my personal website. Here you can learn about me, my hobbies, and my social activities.</p>
</main>
<footer style="background-color:#333; color:white; text-align:center; padding:10px;">
© 2025 Ishanth
</footer>
</body>
</html>