Start your HTML, Css and Javascript learning journey with us for free!
We teach you everything about web development with examples, projects and simple quizes, to help you start creating your first website using HTML, Css and Javascript.
What is Html and explain it?
HTML is a popular computer language that is mostly used to structure webpages on the browser or the internet. This markup language is like the skeleton or foundation of every website you visit or see on the internet.
Html stands for?
It stands for hypertext markup language.
Example Hml code
<h1>
This is an html h1 heading element
</h1>
What is Css?
Css is a stylesheet language used to design a website to look more professional, beautiful and be responsive on mobile devices, by controlling colors, fonts, animations, margins, etc.
Css stands for?
It stands for cascading style sheets.
Example Css code
Let's style the h1 element with css and make it blue.
h1{
color:
blue;
}
What is Javascript and explain it?
Javascript makes the website come to life by making it interactive, dynamic and by adding functionality. It controls the behavior of the website by handling mouse clicks when users click on the page, updating data without reloading the page, etc.
Example Javascript code
Logging "Javascipt" to the console.
console.log("Javascript");
Html quiz
What is the correct syntax for an html h1 element?
If you want to create websites or your own website, you can use this 3 mostly used and powerful languages called Html, Css and Javascript to create them.
Let's compare this 3 powerful languages as a living human body.
Html: is the skeleton for your web page because it holds everything together and everything you see on a website. With html tags you can layout the paragraph content, images, headings, buttons, and many more elements or content on your site. Start learning all this different elements here.
Css: is the color skin or clothing on a human body. It makes your website more colorful, it adds texture, style and makes the webpage look the way want it to be. Without css our website will look ugly to look at and boring to use. We use it to control the font size, margins, font family, animations, colors, etc on our site. We also use it to control the responsive design so that our site can be adaptable to all different screens or devices.
Javascript: It is the brain that controls a human body and it makes a webpage react when we click a button or controls the behavior. When you fill up a form on a site javascipt processes that form, it updates your webpage and controls everything in the background or behind the scenes. This makes the site be interactive and makes it feel alive.