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
49 changes: 41 additions & 8 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,52 @@
</head>
<body>
<header>
<h1>Product Pick</h1>
<h1>Shirt 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-->

<p>
<label for="name"> Name:</label>
<input type="text" id="name" name="user_name" required/>
</p>
<p>
<label for="mail">Email: </label>
<input type="email" id="mail" name="user_name" required/>
</p>
<p>
<label for="size">
<span> Choose your size:</span>
</label>
<select id="size" name="user-size">
<option value="xs">XS</option>
<option value="small">S</option>
<option value="mid">M</option>
<option value="large">L</option>
<option value="xl">XL</option>
<option value="xxl">XXL</option>

</select>
</p>

<p>
<label for="color">
<span> Choose your color:</span>
</label>
<select id="color" name="user-color">
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="yellow">Yellow</option>
<option value="black">Black</option>
<option value="white">White</option>

</select>
</form>
</main>
<footer>
<!-- change to your name-->
<p>By HOMEWORK SOLUTION</p>
<!--Adedolapo Bamiduro-->
<p></p>
</footer>
</body>
</html>
</html>
50 changes: 18 additions & 32 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,19 @@
<!DOCTYPE html>

!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
</footer>
</body>
</html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<header>
<h1>Wireframe</h1>
<p>An article about webpages and their purpose</p>
</header>

<main>
<article>
<img src="placeholder.svg" alt="An image depict
Loading