Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.48 KB

File metadata and controls

38 lines (31 loc) · 1.48 KB

WDD 130 Starting Template Repository

This repository is the official starter template for students in WDD 130. It provides a minimal, well-organized starting point for building HTML and CSS projects used for class assignments and practice.

Language composition

  • HTML: 62.8%
  • CSS: 37.2%

Getting started

  1. Clone the repository:
    git clone https://github.com/BYULabs/wdd130.git
  2. Open the project in your browser:
    • Open index.html directly in your browser if present, or
    • Serve the folder with a simple local HTTP server for best results (recommended):
      • Python 3: python -m http.server 8000
  3. Edit files and iterate:
    • Update HTML files and the CSS stylesheets as you develop.
    • Use a new Git branch for each assignment or project, e.g. assignment-1-yourname.

Recommended project structure

  • index.html — main page (create if needed)
  • css/ — stylesheets
  • images/ — images and other assets
  • projects/ — student project folders

Class workflow / Git tips

  • Create a branch per assignment: git checkout -b assignment-1-yourname
  • Commit early and often: git add . && git commit -m "work in progress"
  • Push your branch: git push origin assignment-1-yourname
  • Open a Pull Request when you're ready for review.

Resources

Contact / Support

If you have questions about this template or need help, open an issue in this repository or contact the BYU Labs course staff.