This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Releases: oldoc63/learningHTML
Releases · oldoc63/learningHTML
Semantic_v1.0
Follow carefully issues and commits and you are done.
What's Changed
- div -> header/nav changed #64 by @oldoc63 in #65
- div as main footer #66 by @oldoc63 in #67
- div -> main and footer #68 by @oldoc63 in #69
- div in main -> section #70 by @oldoc63 in #71
- h2 and p encapsulated with Article #72 by @oldoc63 in #73
- div -> aside #74 by @oldoc63 in #75
- Figure and figcaption tags added #76 by @oldoc63 in #77
- Tag audio with sourceand attributes added #78 by @oldoc63 in #79
- Video with controls and embed with source tags #80 by @oldoc63 in #81
Full Changelog: tortoiseHare_v1.0...Semantic_v1.0
NYC_Blog_v1.0
The city that never sleeps.
What's Changed
- NYC blog initial commit #83 by @oldoc63 in #84
- nav tag underneath the opening body tag created #85 by @oldoc63 in #86
- Unordered listfor future nav bar items #87 by @oldoc63 in #88
- Title inside h1 nested in a header tag #89 by @oldoc63 in #90
- Main and section with id blog created #91 by @oldoc63 in #92
- Article and paragraph tags created #93 by @oldoc63 in #94
- Figure, img, source and figcaption added #95 by @oldoc63 in #96
- Aside, paragraph p, ordered list ol, and li tags created #97 by @oldoc63 in #98
- Section media with video created #99 by @oldoc63 in #100
- Embed with srcand only one tag #101 by @oldoc63 in #102
- Audio tag added #103 by @oldoc63 in #104
- Footer nested in a section under /main and before /body 105# by @oldoc63 in #106
Full Changelog: Semantic_v1.0...NYC_Blog_v1.0
tortoiseHare_v1.0
The spinning of a classic!
What's Changed
- Form a Story by @oldoc63 in #33
- Action and Method assigned #35 by @oldoc63 in #36
- Submit button created #37 by @oldoc63 in #38
- label animal-1 added #39 by @oldoc63 in #40
- Input associated with label by the same id #41 by @oldoc63 in #42
- More labels and inputs separated by br tags added #43 by @oldoc63 in #44
- Adjective (past tense) added #45 by @oldoc63 in #46
- Verb (ends in -ing): added #47 by @oldoc63 in #48
- Label and input type number added #49 by @oldoc63 in #50
- Yes No span added #51 by @oldoc63 in #52
- yesNo radio buttons added #53 by @oldoc63 in #54
- Speed input select-option added #55 by @oldoc63 in #56
- Input datalist-options quotes added #57 by @oldoc63 in #58
- Textarea meaningfulmessage added #59 by @oldoc63 in #60
Full Changelog: validatedForm_v1.0...tortoiseHare_v1.0
daviesBurguer_v1.0
This release include the creation of an HTML form using different input variations (text, password, etc). The contents of the Davie's Burgers html page are in the index.html file of the directory howaformworks.
validatedForm_v1.0
Let’s quickly recap:
Client-side validations happen in the browser before information is sent to a server.
Adding the required attribute to an input related element will validate that the input field has information in it.
Assigning a value to the min attribute of a number input element will validate an acceptable minimum value.
Assigning a value to the max attribute of a number input element will validate an acceptable maximum value.
Assigning a value to the minlength attribute of a text input element will validate an acceptable minimum number of characters.
Assigning a value to the maxlength attribute of a text input element will validate an acceptable maximum number of characters.
Assigning a regex to pattern matches the input to the provided regex.
If validations on a <form> do not pass, the user gets a message explaining why and the <form> cannot be submitted.
wineFestival_v1.0
The Aguillar Family is hosting their annual wine festival and they have asked me to build a web page for the event schedule! This is the final version.