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
44 changes: 43 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,43 @@
<!-- Your code here -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to My Sample Page where you can find information about us.">
<title>My Site Title</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Welcome to My Sample Page</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section id="home">
<h2>Home Section</h2>
<p>This is the home section of the webpage.</p>
</section>

<section id="about">
<h2>About Section</h2>
<p>This section provides information about the webpage.</p>
</section>

<section id="contact">
<h2>Contact Section</h2>
<p>Here you can find contact details.</p>
</section>
</main>

<footer>
<p>© 2024 My Sample Page</p>
</footer>
</body>
</html>