Web Development - HTML - The Structure of any Website
Course Preview
This is an Introduction video to the Web development Series by Tharun
Shiv. I have tried my best to collect the latest resources to form this
tutorial here, if you find any changes to it, please feel free to
comment them below. In this video i have just showed you about the few
cool things about web development. We will start coding from the next
tutorial.
Shiv. I have tried my best to collect the latest resources to form this
tutorial here, if you find any changes to it, please feel free to
comment them below. In this video i have just showed you about the few
cool things about web development. We will start coding from the next
tutorial.
There are 3 basic languages to develop a website.
1 HTML - Hyper Text Markup Language
2 CSS - Cascading Style Sheets
3 Javascript
1 HTML - Hyper Text Markup Language
2 CSS - Cascading Style Sheets
3 Javascript
What is HTML?
HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as heading, paragraph, and so on.
HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as heading, paragraph, and so on.
What is CSS?
CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper, or
in other media
CSS saves a lot of work.
It can control the layout of multiple web pages all at once
External stylesheets are stored in CSS files
Browsers do not display the HTML tags, but use them to render the
content of the page.
CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper, or
in other media
CSS saves a lot of work.
It can control the layout of multiple web pages all at once
External stylesheets are stored in CSS files
Browsers do not display the HTML tags, but use them to render the
content of the page.
What is Javascript?
JavaScript is a programming language that allows you to implement
complex things on web pages.
Every time a web page does more than just sit there and display static
information for you to look at ,
Right from displaying timely content updates, or interactive maps, or
animated 2D/3D graphics, or scrolling video jukeboxes, etc. You can bet
that JavaScript is probably involved. It is the third layer of the layer
cake of standard web technologies, two of which (HTML and CSS).
JavaScript is a programming language that allows you to implement
complex things on web pages.
Every time a web page does more than just sit there and display static
information for you to look at ,
Right from displaying timely content updates, or interactive maps, or
animated 2D/3D graphics, or scrolling video jukeboxes, etc. You can bet
that JavaScript is probably involved. It is the third layer of the layer
cake of standard web technologies, two of which (HTML and CSS).
0 Comments