Skip to content

igarashi50/hackathon-tpac-2024

 
 

Repository files navigation

Hackathon @ TPAC 2024

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.

How to Submit Your Project

Follow these steps to submit your project for the TPAC Hackathon.

1. Fork the Repository

  1. Navigate to the top right of this repository and click the Fork button.
  2. This will create a copy of the repository under your own GitHub account.

2. Clone Your Fork Locally

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

3. Add Your Project

  1. In the cloned repository, navigate to the submissions/ directory.
  2. Add your HTML file to the submissions/ directory. Name your HTML file appropriately (e.g. your-username.html or your-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.

4. Commit Your Changes

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

5. Create a Pull Request

  1. Navigate to the original repository at GitHub (this one).
  2. Click the Pull Requests tab.
  3. Click the New Pull Request button.
  4. Select your fork in the base repository dropdown.
  5. 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!

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 60.6%
  • CSS 29.9%
  • HTML 8.2%
  • JavaScript 1.3%