HTML - Paragraphs

Paragraphs:

  • In HTML, the default paragraph defined in source code is ignored and it will be presented in a single block.
  • To add a manual paragraph, we can use the <p> tag with align attribute left, right, justify.


     <p align="center">paragraph goes here</p>

  • The paragraph defined using <p> will always start on a new line and browsers will automatically add a white space before and after a paragraph on the web page.

HTML - Headings

Headings:

  • In general, Headings are the title or subtitle given for the content on the web page.
  • Headings in HTML are defined by using a tag <hn> where 'n' refers to the level number 1 to 6.

HTML - Structure of HTML Document

HTML <!DOCTYPE> Declaration:

  • <!DOCTYPE> declaration is an information to the browser about type of document to expect/to understand the version of HTML used in the document. And this <!DOCTYPE> is not an HTML tag.
  • This <!DOCTYPE> declaration is not case sensitive.
  • In HTML5, the declaration of <!DOCTYPE> is very simple.

<!DOCTYPE html>

JavaScript ES6 Enhancement

  • JavaScript was introduced as a client-side scripting language in 1995.

  • ECMAScript (European Computer Manufacturers Association Script) established a standard for scripting languages in 1997.

  • ES is a parent of many scripting languages like TypeScript, JScript, ActionScript, and JavaScript.

  • JavaScript evolved year after year with every new version of ECMAScript introducing new features.

JavaScript Statements

 Statements:

  • Like Every other programming language, JavaScript statements are also the line of instructions that are to be executed by the web browser.
  • In JavaScript, Every statement should be finished with a semicolon ( ; ). 
  • And these statements will be executed in sequential order, from top to bottom.

Javascript Course for Beginners

Why Javascript?
Javascript Course for Beginners
 
    As we all know that we can build beautiful websites using HTML and CSS. But the problem is such pages are static only which means users can just scroll up and down, click on the links. There's no interaction with the users.

Javascript Course for Beginners

    Now we can make these static pages dynamic by adding a layer of interactivity with the help of Javascript.

Introduction to HTML5

 HTML:

Introduction to HTML5

  • HTML stands for HyperText Markup Language.
  • HTML is used for presenting and structuring content on web pages and its standards are maintained by W3C(World wide web Consortium).
  • In general, we use HTML to build a webpage, Hyperlink, Online form, etc.,
  • HTML is case insensitive and platform-independent, the same code will run on a different OS.

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...