A simple HTML/CSS/JS project used to demonstrate version control fundamentals (commits, branching, and GitHub collaboration workflows) for CSP451.
This repository contains:
index.html
— starter HTML pagestyle.css
— basic stylingscript.js
— simple console output.gitignore
— common patterns to ignore- A Git history demonstrating meaningful commits using conventional types (
feat
,fix
,docs
,style
,refactor
)
## usage
Open index.html in your browser (double-click or use Live Server in VS Code). Open DevTools Console to see the JavaScript output from script.js.
Example (expected console output):
Hello from script.js!
##🤝 Contributing Guidelines
We welcome small improvements for learning purposes.
Fork the repo and clone your fork.
Create a feature branch:
git checkout -b feature/short-description
Commit with conventional types:
feat: ... new feature
fix: ... bug fix
docs: ... documentation only
style: ... formatting/CSS/no logic changes
refactor: ... code change that neither fixes a bug nor adds a feature
Push and open a Pull Request describing what and why.
Assign the instructor/reviewer and address any comments.
## License
This project is licensed under the MIT License. See the LICENSE file for details.
Clone the repo and enter the folder:
git clone https://github.com/YourUsername/CSP451-CheckPoint1-YourName.git
cd CSP451-CheckPoint1-YourName