-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1286 from snehas-05/main
Main
- Loading branch information
Showing
3 changed files
with
53 additions
and
137 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<!-- SEO Metadata --> | ||
<title>Explore the Metaverse: Virtual and Augmented Reality Experiences</title> | ||
<meta name="description" content="Discover the latest in metaverse technology and experiences in virtual and augmented reality."> | ||
<meta name="keywords" content="metaverse, virtual reality, augmented reality, 3D environments, digital avatars"> | ||
<meta name="author" content="[Your Name/Organization]"> | ||
|
||
<!-- Stylesheets --> | ||
<link rel="stylesheet" href="styles/styles.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Welcome to the Metaverse</h1> | ||
<p>Your gateway to immersive virtual experiences.</p> | ||
</header> | ||
<main> | ||
<!-- Main content goes here --> | ||
</main> | ||
<footer> | ||
<p>© 2024 Metaverse Project. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
color: #333; | ||
} | ||
|
||
header { | ||
background: #007bff; | ||
color: white; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
|
||
footer { | ||
text-align: center; | ||
padding: 10px 0; | ||
background: #007bff; | ||
color: white; | ||
position: relative; | ||
bottom: 0; | ||
width: 100%; | ||
} |