Skip to content

Latest commit

 

History

History
95 lines (64 loc) · 2.24 KB

Lecture_4_Notes.md

File metadata and controls

95 lines (64 loc) · 2.24 KB

Code your first HTML Program

1. HTML

  • HTML (Hyper Text Markup Language) - Language that define structure of your website.
  • You can Learn more about HTML Documentation

2. Environment Setup

  • Setup
    • Download / Install VS Code
    • Install 2 Extensions

We are using VS Code. You can use Sublime, Atom, JetBrains etc..

  • You have multiple options to download for windows, macOS, linux etc..
  • Download it anywhere you want.
  • Then you have to install it, and you get something like this UI
  • There are some useful menus:

    • File Explorer
    • Find & Replace Words
    • Version Control (GitHub)
    • Extensions
  • You have to Install these 2 Extensions:

  • I've already installed this, so you will see install button instead of Uninstall.

  • You can install these extensions from VS Code or the Link I mentioned here.

3. First Program in HTML

HTML Boilerplate

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>