Wednesday, 16 January 2019

Learn HTML part 3

Basic Knowledges
The <body> Tag

The body tag follows the head tag. All visual -structural elements are contained within the body tag.
Headings paragraph, lists, quotes, images, and links are just a few of the element that can be contained within the body tag.

Basic HTML structure:-

<html>
<head>
</head>
<body>
</body>
</html>

The <body> Tag defines the main content of the HTML document. 

Learn HTML part 2

Basic Knowledges
The <head> Tag


Immediately following the opening HTML, tag, you will find the head of the document, which is identified by opening and closing head tags.
The head of an HTML file contains all of the non visual elements that help make the page work.
<html>
<head>........ </head>
</html>

Tuesday, 15 January 2019

Learn HTML part 1

Basic Knowledges
Basic HTML

HTML stands for Hyper Text Markup Language.
Unlike a programming language.
HTML is essential for any web professional.
Modern Web Design
HTML: Structure
CSS: Presentation
JavaScript: Behavior
   PHP: Backend
   CMS: Content Manafement

The <html> Tag

The structure of an HTML document has been compared with sandwich. As a sandwich has two slices of bread, the HTML document has opening and closing HTML tags. 
For example:-
<html>
..........
</html>