Latest Posts

Sunday 2 June 2019

Basic Knowledges
The Hindu 1 June.pdf:- Download 

Thursday 2 May 2019

Tuesday 22 January 2019

Learn HTML part 8

Basic Knowledges
Comments

The browser doesn't display comments, but they help document the HTML and add descriptions, remainders, and other notes. 

For example 
<! -- Your comment goes here -->

<html>
<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
<!-- Your comment goes here -->
</body>
</html>
   

Monday 21 January 2019

Learn HTML part 7

Basic Knowledges
Horizontal Lines

To create a horizontal line use the <hr/> Tag.

<html>
<head>
<title> first page</title>
</head>
<body>
<h1> This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr/>
<p> This is my first paragraph </p>
</body>
</html>
                                           
 Input

Output


Sunday 20 January 2019

Learn HTML part 6

Basic Knowledges
HTML Headings

HTML include six level of headings, which are ranked according to importance.
There are <h1>, <h2>, <h3>, <h4>, <h5> and <h6>
For example 
<html>
<head>
<title> first page </title>
</head>

<h1> This is heading 1 </h1>
<h2> This is heading 2 </h2>
<h3> This is heading 3 </h3>
<h4> This is heading 4 </h4>
<h5> This is heading 5 </h5>
<h6> This is heading 6 </h6>

</body>
</html>

Input


Output 





Friday 18 January 2019

Learn HTML part 5

Basic Knowledges
Single Line Break

Use the <br/> Tag to add a single line of text without starting a new paragraph. 
👉The <br/> Element is an empty HTML element. It has no end tag. 

For example:-
👇👇👇👇
<html>
<head>
<title> First page 
</title>
</head>
<body>
<p> This is my first paragraph </p>
<p> This is my second paragraph </p>
<p> This is a <br/> line break </p>
</body>
<html>

Input
👇👇👇👇


Result
👇👇👇👇






Learn HTML part 4

Basic Knowledges
The <p> Element

To create a paragraph simply type in the <p> Element with its opening and closing  tags.
For example:-
<html>
<head>
<title> First page </title>
</head>
<body>
<p> This is my first paragraph </p>
<p> This is my second paragraph </p>
</body>
</html>

Input


 Result


Our Team

  • Syed Faizan AliMaster / Computers
  • Syed Faizan AliMaster / Computers
  • Syed Faizan AliMaster / Computers
  • Syed Faizan AliMaster / Computers
  • Syed Faizan AliMaster / Computers
  • Syed Faizan AliMaster / Computers