Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 40 additions & 6 deletions secondpage.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>Title of the Linked Page</title>
<title>About Suraj Shrestha</title>
<meta name="author" content="Suraj Shrestha">
<style>
body {
background-color: #e0f7fa;
color: #006064;
font-family: Arial, sans-serif;
text-align: center;
}
img {
width: 150px;
border-radius: 10px;
margin: 20px 0;
}
a.button {
display: inline-block;
padding: 10px 20px;
background-color: #006064;
color: white;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<a href="index.html"><img src="logo.png"></a>
<h1>Another Page</h1>
<p>This is another page.</p>
<h2>Sub-Heading</h2>
<p>This is a section.</p>
<!-- Logo linking back to main page -->
<a href="index.html"><img src="logo.png" alt="My Logo"></a>

<h1>About Suraj Shrestha</h1>

<p>Hello! I’m Suraj Shrestha. I am currently a Computer Science student learning web development through CS1030. This website is my first personal web project using GitHub Pages.</p>

<h2>My Interests</h2>
<p>I enjoy coding, exploring new technologies, and creating personal projects that showcase my skills. I also like photography and sharing my experiences online.</p>

<h2>Contact</h2>
<p>You can reach me through my GitHub profile or explore my projects from my main page.</p>

<!-- Button back to main page -->
<p><a href="index.html" class="button">Back to Home</a></p>
</body>
</html>