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
90 changes: 81 additions & 9 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,99 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My form exercise</title>
<meta name="description" content="" />
<meta
name="form controls"
content="an exercise on the understanding of form controls"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Product Pick</h1>
<h1>T-Shirt Product Pick</h1>
</header>

<!-- T-Shirt Information Collection Form Design (Name Email and T-shirt color) -->
<main>
<form>
<!-- write your html here-->
<!--
try writing out the requirements first as comments
this will also help you fill in your PR message later-->

<div>
<label for="name">Name</label>
<input
type="text"
name="name"
id="name"
minlength="2"
placeholder="Monsur Abdulrahman"
required

/>
</div>
<div>
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="monsur@gmail.com"
required
/>
</div>
<div>
<label for="color">T-Shirt Color</label>
<select name="color" id="color" required>
<option value="">-- Select a color --</option>
<option value="White">White</option>
<option value="Green">Green</option>
<option value="Black">Black</option>
</select>
Comment on lines +47 to +52

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a way to configure a <select> element so that no option is selected by default, allowing the user to make an explicit choice.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for reviewing my pull request. I have included the select option to allow the users to make choices, rather than a default option.

</div>

<!-- T-shirt Size Column -->

<fieldset>
<Legend>Size</Legend>

<div class="size-option">
<input type="radio" name="size" id="xs" required />
<label for="xs">XS</label>

</div>
<div class="size-option">
<input type="radio" name="size" id="s" value="S" />
<label for="s">S</label>

</div>
<div class="size-option">
<input type="radio" name="size" id="m" value="M" />
<label for="m">M</label>

</div>
<div class="size-option">
<input type="radio" name="size" id="l" value="L" />
<label for="l">L</label>
</div>
<div class="size-option">
<input type="radio" name="size" id="xl" value="XL" />
<label for="xl">XL</label>

</div>
<div class="size-option">
<input type="radio" name="size" id="xxl" value="XXL" />
<label for="xxl">XXL</label>

</div>
</fieldset>

<button type="submit">Submit</button>
</form>
</main>
<footer>
<!-- change to your name-->
<p>By HOMEWORK SOLUTION</p>
<!-- Footer -->
<p>Designed with Love by Monsur Abdulrahman</p>
</footer>
</body>
</html>
87 changes: 87 additions & 0 deletions Form-Controls/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@


* {
box-sizing: border-box;
}

h1, footer {
text-align: center;
}


main {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background-color: aliceblue;
border-radius: 10px;
box-shadow: 0 4px 6px;

}

label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}

input,
select {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid green;
border-radius: 5px;

}

fieldset {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
border: 1px solid green;
padding: 10px;
margin-bottom: 5px;
border-radius: 5px;



}



.size-option {
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 5px;

}

input [type="radio"] {
width: auto;
margin-bottom: 0;
}

button[type="submit"] {

width: 100%;
padding: 12px;
background-color: green;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;

}

button[type="submit"]:hover {
background-color: blue;
}

footer {
margin-top: 20px;
font-size: 0.9em;

}
Loading