Skip to content
Navigation Menu
Toggle navigation
Sign in
Appearance settings
Platform
GitHub Copilot
Write better code with AI
GitHub Spark
New
Build and deploy intelligent apps
GitHub Models
New
Manage and compare prompts
GitHub Advanced Security
Find and fix vulnerabilities
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Discussions
Collaborate outside of code
Code Search
Find more, search less
Explore
Why GitHub
Documentation
GitHub Skills
Blog
Integrations
GitHub Marketplace
MCP Registry
View all features
Solutions
By company size
Enterprises
Small and medium teams
Startups
Nonprofits
By use case
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
By industry
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
Topics
AI
DevOps
Security
Software Development
View all
Explore
Learning Pathways
Events & Webinars
Ebooks & Whitepapers
Customer Stories
Partners
Executive Insights
Open Source
GitHub Sponsors
Fund open source developers
The ReadME Project
GitHub community articles
Repositories
Topics
Trending
Collections
Enterprise
Enterprise platform
AI-powered developer platform
Available add-ons
GitHub Advanced Security
Enterprise-grade security features
Copilot for business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search or jump to...
Search code, repositories, users, issues, pull requests...
Provide feedback
We read every piece of feedback, and take your input very seriously.
Include my email address so I can be contacted
Saved searches
Use saved searches to filter your results more quickly
Sign in
Sign up
Appearance settings
Resetting focus
{{ message }}
im-silent
/
Surplus
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Additional navigation options
Collapse file tree
Files
main
Search this repository
games
LICENSE
games.html
index.html
script.js
styles.css
Breadcrumbs
Surplus
/
index.html
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
im-silent
Add files via upload
Mar 6, 2025
1b61d97
·
Mar 6, 2025
History
History
Open commit details
32 lines (27 loc) · 807 Bytes
Breadcrumbs
Surplus
/
index.html
Top
File metadata and controls
Code
Blame
32 lines (27 loc) · 807 Bytes
Raw
Copy raw file
Download raw file
You must be signed in to make or propose changes
More edit options
Open symbols panel
Edit and raw actions
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Surplus - Home</title> <link rel="stylesheet" href="styles.css"> </head> <body> <nav class="navbar"> <div class="nav-brand">Surplus</div> <div class="nav-links"> <a href="index.html" class="nav-link">Home</a> <a href="games.html" class="nav-link">Games</a> <a href="#credits" class="nav-link">Credits</a> </div> </nav> <section id="home" class="section hero"> <h1>Welcome to Surplus</h1> <p>Your hub for fun and entertainment.</p> </section> <section id="credits" class="section"> <h2>Credits</h2> <p>Created with ❤️ by Joseph</p> </section> </body> </html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html
>
<
html
lang
="
en
"
>
<
head
>
<
meta
charset
="
UTF-8
"
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1.0
"
>
<
title
>
Surplus - Home
</
title
>
<
link
rel
="
stylesheet
"
href
="
styles.css
"
>
</
head
>
<
body
>
<
nav
class
="
navbar
"
>
<
div
class
="
nav-brand
"
>
Surplus
</
div
>
<
div
class
="
nav-links
"
>
<
a
href
="
index.html
"
class
="
nav-link
"
>
Home
</
a
>
<
a
href
="
games.html
"
class
="
nav-link
"
>
Games
</
a
>
<
a
href
="
#credits
"
class
="
nav-link
"
>
Credits
</
a
>
</
div
>
</
nav
>
<
section
id
="
home
"
class
="
section hero
"
>
<
h1
>
Welcome to Surplus
</
h1
>
<
p
>
Your hub for fun and entertainment.
</
p
>
</
section
>
<
section
id
="
credits
"
class
="
section
"
>
<
h2
>
Credits
</
h2
>
<
p
>
Created with ❤️ by Joseph
</
p
>
</
section
>
</
body
>
</
html
>
While the code is focused, press Alt+F1 for a menu of operations.