Home Syllabus Contact About

My Learning Journal

Journaling my experience at KelasProgramming.com Full Stack Web Development Online Coding Bootcamp

Coding Bootcamp class

Bootcamp Program Syllabus

The Bootcamp is a fully online program that takes between 16 to 24 weeks. The program includes Fullstack Developer (NodeJS & Javascript) and DevOp Cloud Engineer training. Full program syllabus as follows:

Back to Top
Coding workstation vector graphic

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:

  1. Install Homebrew for Terminal (Copy link here: Homebrew)
  2. Git ($ brew install git in Terminal)
  3. Visual Studio Code ($ brew install visual-studio-code in Terminal)
  4. NodeJS ($ brew install node . in Terminal)
  5. Git Hub (Sign up for account here: github.com)
  6. 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