Skip to content

any review #433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
50 changes: 50 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Wireframe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Learning Page</h1>
<p>Welcome to my wireframe demo page</p>
</header>

<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>

<main>
<section id="home">
<h2>Home</h2>
<p>This is the home section where the main content will be displayed.</p>
</section>

<section id="about">
<h2>About</h2>
<p>This section describes what the page or website is about.</p>
</section>

<section id="services">
<h2>Services</h2>
<p>Details of services offered can go here.</p>
</section>

<section id="contact">
<h2>Contact</h2>
<p>This section provides contact information or a form for users to reach out.</p>
</section>
</main>

<footer>
<p>&copy; 2024 My Learning Page. All rights reserved.</p>
</footer>
</body>
</html>