Day 1: HTML
May 4, 2022
Today’s Progress
- Change Github Pages to Cloudflare pages to use custom domain
- Basic HTML and HTML5
- HTML Elements
- Heading (
h1-6
) - Paragraph (
p
) - Comment (
<!--comment-->
) - HTML5 Elements
- Anchor Elements (
a
) for external and internal - Images (
img
) - Unordered and ordered list (
ul
andol
) - Form Element (
form
) - Text field (
input
) + placeholder - Submit Form (
button type="submit"
) - HTML5 Required Field (
required
) - Radio Button and Checkbox (input grouped by name attribute)
- Nesting HTML Element
- HTML Structure (Doctype
html
head
body
) - Empty Element
- Page to include all html element that I tried - link
- HTML Elements
- Resources
Thoughts
There are many tag with functionality that we can use without having to code anything
Questions
Can we make custom tag?