This project demonstrates the basics of HTML and CSS.
index.html
— Main HTML filestyles.css
— CSS stylesheet
- Open
index.html
in your browser. - Edit
styles.css
to change the appearance.
- Understand HTML structure
- Apply CSS for styling
git init # Initialize a new Git repository git status # Show current changes and branch info git add . # Stage all changes for commit git commit -m "Message" # Commit staged changes git log # View commit history git push # Upload commits to remote repository git pull # Download and merge changes from remote git clone # Copy a remote repository locally