Daily Journal date: 17-Dec-2024
[Week 1] Menulis Surat Cinta - HTML & CSS Basics
1. Essential Software for HTML & CSS Learning
The must have software & tools for students attending the initial HTML & CSS classes to succesfully performed related day-to-day programming learning and practice activities. Recommended for macOS platform:
- Install Homebrew for Terminal (Copy link here: Homebrew)
- Git ($ brew install git in Terminal)
- Visual Studio Code ($ brew install visual-studio-code in Terminal)
- NodeJS ($ brew install node . in Terminal)
- Git Hub (Sign up for account here: github.com)
- Cloudflare (Sign up for account here: cloudflare.com)
Back to Top
Daily Journal date: 17-Dec-2024
[Week 1] Menulis Surat Cinta - HTML & CSS Basics
2. Terminal Command
Here are some common Terminal commands:
- pwd: Prints the path to the current working directory
- ls: Lists the contents of a directory
- ls -l: Lists the contents of a directory with more information
- clear: Clear Terminal
- cd / cd ~ / cd .. / cd . : Changes/move directory
- mkdir: Creates a new directory
- code . : Open VS Code window
Back to Top
Daily Journal date: 17-Dec-2024
[Week 1] Menulis Surat Cinta - HTML & CSS Basics
3. Basic HTML with VS Code
An introduction to HTML and its component for aspiring new web developers, we learned about:
- File management including creating index.html file in Visual Studio Code
- HTML page structure: Head & Body section, Meta data, Basic HTML tags, attributes, elements:
div, p, h1-h6, button, img, ol, ul, li, a, footer. (further reading at w3schools.com and/or mdn web docs)
Back to Top