Skip to content

Instantly share code, notes, and snippets.

@NamishRI0
Created July 6, 2023 06:02
Show Gist options
  • Save NamishRI0/0d48a09cd3821c6e905eb61ada82b02f to your computer and use it in GitHub Desktop.
Save NamishRI0/0d48a09cd3821c6e905eb61ada82b02f to your computer and use it in GitHub Desktop.
These are notes of YouTube tutorial about HTML by Codes Outs.

<HTML>

Chapter 0: Requirements and Basics

What is Visual Studio Code

I think you already know about Visual Studio Code (Also known as VSCode), it is an awesome code editor, made by Microsoft.
For beginners, who haven't touched programming yet, VSCode is a code editor, it helps us to code better, you can code even in notepad, but VSCode makes our live easier, auto-complete is an example.
Again, VSCode isn't giving me money for this but it is really good! I've tried many others, VSCode is a good one I prefer it to everyone new to programming, even professionals use it.
VSCode will save your time.

How to install Visual Studio Code

It's easy, follow me.

  1. Open Visual Studio Code's Official Website
  2. Click on Download for Windows, if you are using something else, MacOS or LinuxOS, click the drop-down arrow next to the button and download for your platform. (If you are not using Windows, download the Stable Build, highly recommended)
  3. Install the file, on MacOS, open the .zip file and paste the content in Applications folder, on Linux, run this command: sudo apt install ./<file>.deb (replace ./<file>.deb to your file's path) if your on a Debian-based OS or sudo dnf install <file>.rpm (replace <file>.rpm to your file's path) if your on an RedHat-based OS, on Windows double click on the .exe file and go through the setup, recommended to turn on these two options:
    • Add "Open With Code" action to Windows Explorer file context menu
    • Add "Open With Code" action to Windows Explorer directory context menu

And you're done! Visual Studio Code is installed

What is HTML?

HTML (Hyper Text Markup Language) is a Markup Language which is used to make websites, it is the main language to make websites.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment