Skip to content
Henry m edited this page Nov 11, 2023 · 1 revision

Javascript

Introduction

Install development environment

Development in a container

  • cd source
  • npm init
  • npm install
    • something about save dev
  • node app.js

Picking fonts for your style sheet

See: fonts.google.com

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}