-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from htmlacademy/fix/htmlacademy/attr-req-value
Fix/htmlacademy/attr req value
- Loading branch information
Showing
4 changed files
with
83 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!doctype html> | ||
<html lang="ru"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
|
||
<label for="">Fruits</label> | ||
|
||
<label for="fruits">Fruits</label> | ||
<select id="fruits" name="fruits" required> | ||
<option value="">Select...</option> <!--problem--> | ||
<option value="">Shmelect...</option> <!--problem--> | ||
<option value="banana">Banana</option> | ||
<option value="apple">Apple</option> | ||
</select> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!doctype html> | ||
<html lang="ru"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
|
||
<label for="fruits-3">Fruits</label> | ||
<select id="fruits-3" name="fruits" required> | ||
<option value="orange">Orange</option> | ||
</select> | ||
|
||
<label for="fruits-2">Fruits</label> | ||
<select id="fruits-2" name="fruits" required> | ||
<option value="orange">Orange</option> | ||
<option value="banana">Banana</option> | ||
<option value="apple">Apple</option> | ||
</select> | ||
|
||
<label for="fruits">Fruits</label> | ||
<select id="fruits" name="fruits" required> | ||
<option value="">Select...</option> | ||
<option value="banana">Banana</option> | ||
<option value="apple">Apple</option> | ||
</select> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters