Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a5b42b5
Added first piece of HTML code
M-Abdoon Sep 5, 2025
252223e
added head code to the file
M-Abdoon Sep 5, 2025
3802adb
title of the page added
M-Abdoon Sep 5, 2025
7883644
title of the page added to the file
M-Abdoon Sep 5, 2025
34d1d4e
Changes to meet style-guide
M-Abdoon Sep 5, 2025
414032f
Deleted test.file
M-Abdoon Sep 5, 2025
1150808
checked the checklist in README.dm
M-Abdoon Sep 5, 2025
7a24099
changed index.html to meet requirements
M-Abdoon Sep 5, 2025
0a65cf3
changed the SVG photo name to be able to push it with the other page …
M-Abdoon Sep 5, 2025
5aa8ca1
small edit inside style.css to enable it to be uploaded
M-Abdoon Sep 5, 2025
2137250
the SVG photo added
M-Abdoon Sep 6, 2025
bb280d9
writing the requirements as comments so I can easily remember what I …
M-Abdoon Sep 7, 2025
442f66b
Added coder's name to the page
M-Abdoon Sep 7, 2025
5ae8dad
set basic divs and labels for the form
M-Abdoon Sep 7, 2025
0a43f16
added basic username and email inputs
M-Abdoon Sep 7, 2025
4137d77
done adding basic forms
M-Abdoon Sep 7, 2025
0fffb9d
page beautified and finished
M-Abdoon Sep 7, 2025
4d74d30
'required' lable is added to the forms so the users does not miss any…
M-Abdoon Sep 7, 2025
da47aa1
'id' element added to lables (Accessibilty bug)
M-Abdoon Sep 7, 2025
6d2bfb8
id attribute added to 'submit' lable
M-Abdoon Sep 7, 2025
9173985
Self checklist completed in README.md file
M-Abdoon Sep 7, 2025
5603767
trying deleting README.md
M-Abdoon Sep 7, 2025
fecfc34
Deleted Unwanted folder 'Wireframe'
M-Abdoon Sep 10, 2025
72d4f0a
indentation updated
M-Abdoon Sep 10, 2025
94561ae
Validation of HTML code according to https://validator.w3.org/
M-Abdoon Sep 10, 2025
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
51 changes: 0 additions & 51 deletions Form-Controls/README.md

This file was deleted.

75 changes: 66 additions & 9 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My form exercise</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Product Pick</h1>
</header>
<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-->
<!-- Data required from the user:
1 - Valid name as a text string of two characters or more.
2 - Valid email
3 - One colour from a defined set of 3 colours.
4 - One size from a defined set of 6 sizes. XS, S, M, L, XL, XXL
-->
<div>
<h2>Personal Details:</h2>
<div>
<h3>
<label for="username">
Username: <input type="text" name="username" id="username" minlength="2" autocomplete="name" required>
</label>
</h3>
</div>
<div>
<h3>
<label for="email">
Email: <input type="email" name="email" id="email" autocomplete="email" required>
</label>
</h3>
</div>
</div>
<div>
<h2>Prodect Specification:</h2>
<div>
<h3>Choose Color:</h3>
<h4>
<label for="red">
Purple: <input type="radio" name="colour" id="red" value="red" required>
</label>
<label for="blue">
Green : <input type="radio" name="colour" id="blue" value="blue" required>
</label>
<label for="yellow">
Yellow: <input type="radio" name="colour" id="yellow" value="yellow" required>
</label>
</h4>
</div>
<div>
<h4>
<label for="size">
Select Size:
<select id="size" name="size" required>
<option value="" selected disabled>Choose size</option>
<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>
</label>
</h4>
</div>
</div>
<div>
<label for="submit">
<input type="submit" id="submit">
</label>
</div>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
<h2>By Mohammed Abdoon</h2>
</footer>
</body>
</html>
38 changes: 0 additions & 38 deletions Wireframe/README.md

This file was deleted.

33 changes: 0 additions & 33 deletions Wireframe/index.html

This file was deleted.

6 changes: 0 additions & 6 deletions Wireframe/placeholder.svg

This file was deleted.

89 changes: 0 additions & 89 deletions Wireframe/style.css

This file was deleted.

Binary file removed Wireframe/wireframe.png
Binary file not shown.
Loading