Getting started with HTML
Contents
Introduction
Hey guys, welcome to this tutorial. Today, we shall learn how to start with HTML. For beginners, let's know what is HTML and why to learn it?
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. (text credit: en.wikipedia.org)
All the web pages and websites you see on the internet are a result of HTML codes written. You can also make your own websites if you know the correct use of technology. So, let's get onto it.
Where to start
HTML basically runs on a web browser. And to write it, you need a text editor. Windows users will on default have a text editor named "notepad" and Macintosh users will have "TextEdit." The work of a text editor is to write the HTML code and the web browser will execute it.
The default text editors are very low featurable. There are advanced text editors like VS Code, Sublime Text, and many more. If you're a beginner, I recommend you to use the default text editors and grow as your speed and experience grows.
CSS and JS
HTML is like a skeleton of the human body which provides the structure to a program. Cascading Style Sheets or CSS is an approach providing the skin and other accessories to the skeleton. Style can also be done using some HTML tags but, they are quite less compared to the CSS ones. Also, it will create a mess in the HTML file if we write them in the HTML file only. Therefore, a separate CSS document is created to avoid the mess and make the document stylish.
If we continue our analogy of the human body, JavaScript or JS will perform the role of a brain or the nerves which carry out all the necessary functions. By using JS, your website would be a real fun.
CSS and JS in a website are totally optional. Your website will surely run without them.
Further
Go to: https://thattecheguy.blogspot.com/2022/05/creating-simple-webpage-with-html.html for further making of the webpage.


Comments
Post a Comment