Skip to content
Closed
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
94 changes: 69 additions & 25 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,71 @@
<!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="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-->
</form>
</main>
<footer>
<!-- change to your name-->
<p>By HOMEWORK SOLUTION</p>
</footer>
</body>
<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="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<h1>Product Pick</h1>
</header>
<main>
<form aria-label="order form">
<label for="name">name: </label>
<input
type="text"
name="name"
id="name"
minlength="2"
maxlength="100"
autocomplete="name"
pattern="\S.*\S"
title="name must contain at least two non-space characters. Must start and end with non-space character."
aria-label="enter your name"
required />

<label for="email">email: </label>
<input
type="email"
name="email"
id="email"
aria-label="enter your email address"
required />

<label for="shirt-color">shirt color: </label>
<select
name="shirt-color"
id="shirt-color"
aria-label="select shirt color"
required>
<option value="" disabled selected>Choose a color</option>
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
</select>
<select
name="shirt-size"
id="shirt-size"
aria-label="select shirt size"
required>
<option value="" disabled selected>Choose a 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>
<button type="submit" aria-label="submit order">
Check out
</button>
</form>
</main>
<footer>
<!-- change to your name-->
<p>By Raihan Sharif</p>
</footer>
</body>
</html>
68 changes: 37 additions & 31 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,39 @@
<!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>
<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="placeholder" />
<h2>Title</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quisquam, voluptates. Quisquam, voluptates.
</p>
<<<<<<< HEAD
<a href="#">Read more about wireframing</a>
=======
<a href="#">Read more about wireframes</a>
>>>>>>> main
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made
yet.
</p>
</footer>
</body>
</html>
Loading