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.
- HTML: 62.8%
- CSS: 37.2%
- Clone the repository:
git clone https://github.com/BYULabs/wdd130.git
- Open the project in your browser:
- Open
index.htmldirectly 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
- Python 3:
- Open
- 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.
index.html— main page (create if needed)css/— stylesheetsimages/— images and other assetsprojects/— student project folders
- 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.
- MDN Web Docs (HTML/CSS): https://developer.mozilla.org/
If you have questions about this template or need help, open an issue in this repository or contact the BYU Labs course staff.