Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!--

You must title your PR like this:

REGION | COHORT_NAME | FIRST_NAME LAST_NAME | PROJ_NAME

For example,

London | May-2025 | Carol Owen | Sprint-1

-->

## Learners, PR Template
<!--
The purpose of the self-checklist is to help ensure the quality and completeness of a PR submission.

You must complete all the tasks in the self-checklist and tick the boxes for those you have finished.

You can tick a box by changing [ ] to [x] (with no spaces inside the brackets).
-->

Self checklist

- [ ] I have titled my PR with REGION | COHORT_NAME | FIRST_NAME LAST_NAME | PROJ_NAME
- [ ] My changes meet the requirements outlined in the `README.md` of this task

## Changelist

<!--
When you submit a PR, you're submitting changes you made to your own copy (fork) of the repository and requesting a review of those changes.
It is best practice to leave a brief description of the changes you have made.

You must replace "Briefly explain your PR." with a brief description of the changes you have made.
-->
Briefly explain your PR.
8 changes: 8 additions & 0 deletions PHAIK_SOON.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<head>
<div>Phaik Soon </div>
</head>

<div> My favorite sport is Pole dancing. It makes me feel alive and align to who I am from within.</div>
<div> My favorite food is Hot Pot with Pork Soup Base. It reminds me family reunion, the precious time we spend together - the moment pull out from a chaotic and unpredictable environment.</div>
https://www.youtube.com/watch?v=kkboMZDkT-s&list=RDkkboMZDkT-s&start_radio=1
<div>I enjoy watching my toy poodle eating her food peacefully!</div>
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ To learn more about **pull requests** and how to create one, please use this gui

9. Open a `Pull Request` to this repository

## Finished Work
## How to check your work?
If you have correctly submitted your PR, you can find it in https://github.com/CodeYourFuture/GitHomeworkTest/pulls.

When you've finished you should have a `pull request` that looks like this
Your PR should look like this: https://github.com/CodeYourFuture/GitHomeworkTest/pull/692

https://github.com/CodeYourFuture/GitHomeworkTest/pull/1
**Please note that your PR will not undergo an official review, as none is required.** Most PRs at CodeYourFuture get reviewed, but this one is just for you to practice creating them.

## Asking for Help

Expand Down
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<form action="results.html" method="GET">
<div>
<h3>
Your T-Shirt Information
</h3>
<label for="name">Full Name:</label>
<input type="text" name="name" id="name" placeholder="First name" required>
<input type="text" name="name" id="name" placeholder="Last name" required>
</div>
<div>
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Email" required>
</div>
Pick your favorite T-shirt color:
<div>
<input type="radio" name="color" id="black" value="black">
<label for="black">Mysterious Black</label>
<input type="radio" name="color" id="white" value="white">
<label for="white">Bright White</label>
<input type="radio" name="color" id="violet" value="violet">
<label for="violet">Nano Violet</label>
</div>
<div>
<label for="color">Color Reference:</label>
<input type="color" name="color" id="color">
</div>
<div>
<label for="T-shirtSize">T-shirt Size:</label>
<select name="T-shirtSize" id="T-shirtSize" id="T-shirt Size">
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
</select>
</div>
<button type="submit">Submit</button>
</form>
</body>
</html>
Empty file added results.html
Empty file.