Building blocks of web

Building blocks of web

·

2 min read

HTML - The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser.

CSS - CSS stands for Cascading Style Sheets.css describes how HTML elements are to be displayed on screen.

JavaScript - JavaScript is a text-based programming language used both on the client-side and server-side that allows you to make web pages interactive.

HTML (Hyper Text Markup Language)

image.png

  • What is the use of HTML?

    • An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element in an HTML document.
  • What HTML tags ?

    • HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content.
  • How HTML works in browser ?

    • Each HTML document can actually be referred to as a document tree. We describe the elements in the tree like we would describe a family tree. There are ancestors, descendants, parents, children and siblings.

CSS (Cascading Style Sheet)

image.png

  • CSS is a design language that makes a website look more appealing than just plain or uninspiring pieces of text.
  • Whereas HTML largely determines textual content, CSS determines visual structure, layout, and aesthetics.

JS (Java Script)

image.png

  • JavaScript is a scripting language that enables you to create dynamically updating content, control multimedia, animate images, and pretty much everything else.
  • Javascript is object oriented, but is not a class based object oriented language like Java, C++, C# etc.

Well this was my first blog. Hope you gained some information from reading my blog.

image.png