1. Choose a tool for coding

You can use a number of tools to support website development such as Atom, Notepad++, Sublime Text, Adobe Dreamweaver CC, Visual Studio Code, CoffeeCup HTML Editor, Netbeans,…

Particularly for the LAB lessons in this course, I will use Visual Studio Code.

You can download Visual Studio Code via this link: https://code.visualstudio.com/download

After that, you proceed to install Visual Studio Code tools normally like other applications

2. Create a static web project

If you want to create a static web project, you can follow like this:

In the local computer, you can organize the folder structure on your computer as follows:

Academic policy

Prerequisite(s)

PRF192 - Programming Fundamentals

Java Technology

Java technology is a high-level, robust, and secure programming platform. It includes:

The Java Programming Language

Java is:

Java Platform

The Java platform includes:

1749043121839

Java Platform Editions

Bytecode

1749043071389

Example: A Simple Java Program

1
2
3
4
5
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

1749043171651