Conversation
sammy6378
commented
Sep 2, 2025
- Introduced new documentation for HTML, covering elements, attributes, forms, and semantic HTML.
- Added CSS guides on box model, selectors, layout techniques, and styling projects.
- Created Git documentation including basic commands, branching, GitHub workflows, and best practices.
- Included project ideas for HTML and CSS to encourage practical application of learned concepts.
- Established GitHub section with collaboration, issues, and actions for CI/CD basics.
- Introduced new documentation for HTML, covering elements, attributes, forms, and semantic HTML. - Added CSS guides on box model, selectors, layout techniques, and styling projects. - Created Git documentation including basic commands, branching, GitHub workflows, and best practices. - Included project ideas for HTML and CSS to encourage practical application of learned concepts. - Established GitHub section with collaboration, issues, and actions for CI/CD basics.
There was a problem hiding this comment.
Pull Request Overview
This PR introduces foundational documentation for HTML, CSS, and Git/GitHub, expanding the reference site beyond JavaScript to include essential web development fundamentals. The changes organize the documentation by updating category positions and adding comprehensive guides for beginners.
- New HTML documentation covering elements, attributes, forms, semantic markup, and accessibility
- CSS guides for selectors, box model, layout techniques, and practical project ideas
- Git and GitHub documentation including commands, workflows, collaboration, and CI/CD basics
Reviewed Changes
Copilot reviewed 138 out of 138 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/HTML/* | Complete HTML guide from introduction to projects |
| docs/CSS/* | CSS fundamentals including selectors, layout, and styling |
| docs/Git/* | Git version control basics and GitHub workflow |
| docs/GitHub/* | GitHub collaboration features and hosting guides |
| docs/Javascript/category.json | Updated position from 2 to 5 in navigation |
| .docusaurus/* | Generated build files reflecting new documentation structure |
Comments suppressed due to low confidence (1)
docs/CSS/projects.md:1
- The link path '../../CSS/Beginner/introduction-to-css.md' is incorrect. Based on the file structure, it should be '../CSS/introduction-to-css.md' since there's no 'Beginner' subdirectory in CSS.
---
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| @@ -0,0 +1,42 @@ | |||
| --- | |||
| title: Media (Images, Audio, Video, Iframes) | |||
| sidebar_position: 5 | |||
There was a problem hiding this comment.
The sidebar position 5 conflicts with HTML/projects.md which also has sidebar_position: 5. This will cause navigation ordering issues.
| sidebar_position: 5 | |
| sidebar_position: 6 |
|
|
||
| ## What's Next? | ||
|
|
||
| You’ve mastered HTML basics! Move on to [Introduction to CSS](../CSS/introduction-to-css.md) to start styling your pages. |
There was a problem hiding this comment.
The link path '../CSS/introduction-to-css.md' is incorrect. The correct relative path should be '../../CSS/introduction-to-css.md' to navigate from HTML directory to CSS directory.
| You’ve mastered HTML basics! Move on to [Introduction to CSS](../CSS/introduction-to-css.md) to start styling your pages. | |
| You’ve mastered HTML basics! Move on to [Introduction to CSS](../../CSS/introduction-to-css.md) to start styling your pages. |
|
|
||
| ## What's Next? | ||
|
|
||
| Want to level up? Try combining your HTML and CSS skills, or move on to [Introduction to Git](../../Git/Beginner/introduction-to-git.md) to learn about version control! |
There was a problem hiding this comment.
The link path '../../Git/Beginner/introduction-to-git.md' is incorrect. Based on the file structure, it should be '../Git/introduction-to-git.md' since there's no 'Beginner' subdirectory in Git.
| Want to level up? Try combining your HTML and CSS skills, or move on to [Introduction to Git](../../Git/Beginner/introduction-to-git.md) to learn about version control! | |
| Want to level up? Try combining your HTML and CSS skills, or move on to [Introduction to Git](../Git/introduction-to-git.md) to learn about version control! |
Deploying nuvex-docs with
|
| Latest commit: |
5e6efb0
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://3cc92249.nuvex-docs.pages.dev |
| Branch Preview URL: | https://staging.nuvex-docs.pages.dev |
|
Approved |