Welcome to the TPAC Hackathon! This event is designed to challenge your HTML and CSS skills in a fun, relaxed atmosphere with fellow W3C attendees. Whether you're a seasoned developer or just starting out, you'll have the opportunity to show off your creativity, meet new people, and compete for nerdy prizes.
The event is open to all in-person attendees at W3C TPAC 2024 on Tuesday, September 24th, 8:30 PM to 10:30 PM at the Hilton Anaheim, Huntington, Concourse level, 4th floor.
Make sure to pre-register here.
Follow these steps to submit your project for the TPAC Hackathon.
- Navigate to the top right of this repository and click the Fork button.
- This will create a copy of the repository under your own GitHub account.
Once you've forked the repo, clone it to your local machine:
git clone https://github.com/w3c/hackathon-tpac-2024.git
cd hackathon-tpac-2024
- In the cloned repository, navigate to the
submissions/
directory. - Add your HTML file to the
submissions/
directory. Name your HTML file appropriately (e.g.your-username.html
oryour-project-name.html
).
Important: Make sure your HTML file contains the following tags:
- A
<title>
tag with the title of your project.
<title>Your Project Title</title>
- A
<meta name="author">
tag with your name or names, if you're working as a pair.
<meta name="author" content="Your Name" />
- If your project uses CSS or JavaScript, please include them directly within the HTML file. Use a
<style>
tag for CSS and a<script>
tag for JavaScript. This ensures that everything is self-contained and easy to display.
Once you've added your project, commit your changes:
git add submissions/your-username.html
git commit -m "Add your project"
git push origin main
- Navigate to the original repository at GitHub (this one).
- Click the Pull Requests tab.
- Click the New Pull Request button.
- Select your fork in the base repository dropdown.
- Click the Create Pull Request button.
Once your pull request is approved, your project will be live on the hackathon website!
We look forward to seeing your creative projects! Happy coding!