Skip to content
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

Create Example.html #909

Open
wants to merge 1 commit into
base: master
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
34 changes: 34 additions & 0 deletions Example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// Example HTML code (Front-end)
<!DOCTYPE html>
<html>
<head>
// Title of the web page would be written here
<title>My Web Page</title>
</head>
<body>
<header>
// Header of the web page would be written here
<h1>Welcome to my Web Page!</h1>
</header>

<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>

<main>
<h2>About Me</h2>
// Your personal information example your name and something more information of yourself for example your brief introduction
<p>Hi, my name is Ansh srivastava and I'm a web developer.</p>
<p>I enjoy creating web pages that are both visually appealing and user-friendly.</p>
</main>

<footer>
// That would be displayed in The foot of your web page for example shows that it's your own website not taken from other site
<p>Copyright © 2023 My Web Page</p>
</footer>
</body>
</html>