Alternative
Amazon
Article
Writing
Art
AI
Angular
Photoshop
Premiere
Animal Crossing
Blog
Story
Android
Android Studio
Davinci Resolve
CSS
Clipchamp
ChatGPT
Crypto
DALL-E
Discord
Davinci Resolve
Davinci Resolve 18
Dream Studio
Express
Filmora
Flutter
PC Games
Git
GPT
GPT3
GPT4
GTA
GTA 6
Ghost Together
Ghost Together
HTML
iOS
iMovie
Illustrator
JavaScript
Mac
Mongo
Midjourney
Minecraft
Node.js
NBA 2k24
OSX
PHP
Palworld
Python
Playground AI
Roblox
React
Recipe (Cooking)
React Native
Semicolon.dev
Starfield PC Game
Snapchat
Steam
Stable Diffusion
SVG
Threads
Text To Image (AI)
VSCode
Vim
Web Development
Windows
WebGL
Html Tutorials

    Vanilla HTML Crash Course for Absolute Beginners

    HTML Video Tutorial Every Beginner Should Watch

    If you prefer learning from a video SemiColon published this YouTube tutorial that goes over exactly the same concepts with practical examples.

    Your Vanilla HTML Curriculum

    1. <DOCTYPE html> signals to browser to render HTML5 not just HTML.
    2. Tags, self-closing tags, nesting and basic structure.
    3. Attributes (style for applying inline CSS (note: not always best practice but important to know) and event based attributes like onclick, onkeydown, onkeyup, that trigger JavaScript code.)
    4. DOM: This is arguably the most important thing about HTML.
    5. DOM: When you type
      it is added in JavaScript as a DOM object.
    6. DOM: HTML attributes are also stored in DOM hierarchy.
    7. DOM: Learn basic JavaScript functions for manipulating DOM elements. They stem from main DOM object document. Its methods and properties can be accessed as document.title or document.querySelector etc.
    8. HTML entities for displaying < and > without transforming into tag.
    9. Quotes, double quotes and basic HTML entity names like ©
    10. All commonplace tags: H1-H6, p, b, i, span, pre, table, form, input, code, div, head, samp, kbd (a keyboard key tag.)
    11. Colors. Common HTML names like red, blue, yellow. But also X11 names (CSS3 and SVG1.0) like tomato, cornflowerblue.
    12. CSS color functions: rgb(), rgba()and HEX #RRGGBB values.
    13. Links: tag, target="_blank" to open in new tab.
    14. Lists:
    DM Coming Soon
    f f