-
Notifications
You must be signed in to change notification settings - Fork 119
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
Kent's Portfolio Website #95
base: main
Are you sure you want to change the base?
Conversation
</head> | ||
<body> | ||
<h1>Hello, world!</h1> | ||
<nav> | ||
<div class="navbar"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the div? nav is a block element already
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alright noted. will remove the div.
<h1 class="header">Recent Projects</h1> | ||
<div class="repo"> | ||
<div class="project"> | ||
<a href="https://kentkentucky.github.io/Snooker-Game/"><img src="./images/snooker.jpg">Snooker Game</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The game doesn't work? :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the game works.
click 1,2,3 or 4 for different game modes.
to spawn the cue ball. mouse has to be in D and click key W.
to shoot, use the space bar.
@@ -0,0 +1,69 @@ | |||
<!DOCTYPE html> | |||
<html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you need this file, when index.html also contains the projects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh i wanted the home page to list 4 of my newest projects and the project page to have a list of all my projects
No description provided.