Monday, January 14, 2019

HTML Class 1 #.











Asslam o Alaikum;
dear Friends today i start a new course of Web Designing for you . A complete course with short and easy classes. so let's start your
First Class.

HTML Class 1 #.
There is first class for you making your first page with written "My first web page" . Welcome to your First Class. You know For better Website experience you need basic to advanced Knowledge of Web developing . for this you need to learn firs Basic HTML , CSS , JAVASCRIPT and then PHP.

  • HTML stand for Hyper Text Markup Language . it use for creating Webpages.
  • CSS stand for Cascade Style Sheet . it use for Styling the Webpage.
  • JAVASCRIPT it is a Scripting Language that use for Web Programming.
  • PHP stand for Personal Home Page . it use for Server Side Web Programming.
NOTE : JAVASCRIPT EXECUTE IN CLIENT SIDE AND PHP EXECUTE SERVER SIDE. Code of your first Webpage :


CODE

<!DOCTYPE html>

   <html>

      <head>

<title>www.wasimteach.blogspot.com</title>

<meta charset="UTF-8"/>

<link rel="stylesheet" href="" type="text/css"/>

      </head>

<body>

                   <font>My first web page</font>

        </body>

   </html>

OUTPUT


My first web page

HTML Class 2 #.



HTML Class 2 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 2 #.
In your second class i tell you how to you style your text in a page . Styling the text like Bold Italic Underline Strike etc.


CODE

<!DOCTYPE html>
 <html>
 <head>
<title>Untitled</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="" type="text/css"/>
 </head>
<body>
<b>this text is bold<b>
<br>
<i>this text is italic<i>
<br>
<u>this text is underline<u>

 </body>
 </html>

OUTPUT


this text is bold
this text is italic
this text is underline

Sunday, January 13, 2019

HTML Class 3 #.




HTML Class 3 #.

Asslam o Alaikum
dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 3 #.
In This class i tell you how to change color of your text in a page .


CODE

<!DOCTYPE html>
 <html>
 <head>
 <title>Untitled</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
  <font color="red">This text color i set Red<font>
<font color="green">This text color i set Green<font>
<font color="blue">This text color i set Blur<font>
 </body>
 </html>

OUTPUT


This text color i set Red
This text color i set Green
This text color i set Blur

Saturday, January 12, 2019

HTML Class 4 #.


HTML Class 4 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 4 #.

In This class i tell you how to change size of your text in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>Untitled</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
  <font size="12">This is text of size 12<font>
<br>
<font size="16">This is text of size 14<font>
<br>
<font size="22">This is text of size 22<font>
 </body>
 </html>


OUTPUT

This is text of size 12
This is text of size 16
This is text of size 22

Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Friday, January 11, 2019

HTML Class 5 # .


HTML Class 5 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 5 #.

In This class i tell you how to start a new line in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>Untitled</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
  Hi their i break a line with "br tag" <br> this text will print in new line.
 </body>
 </html>


OUTPUT

  Hi their i break a line with "br tag"
  this text will print in new line.

Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Thursday, January 10, 2019

HTML Class 6 #.


HTML Class 6 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 6 #.

In This class i tell you how to start a paragraph with tag <p> in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>Untitled</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
 <p>This text print on a webpage as a paragraph . paragraph is a bundle of words and lines...</p>
 </body>
 </html>


OUTPUT

This text print on a webpage as a paragraph . paragraph is a bundle of words and lines...


Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Wednesday, January 9, 2019

HTML Class 7# .



HTML Class 7 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 7 #.

In This class i tell you how to make table in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>Untitled</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
<table border="3px">
<td>
 td tag elements are used for table cells
</td>
<td>
this is a cell
</td>
<tr>
<td>
 td tag is used to create table column
</td>
<td>
tr tag is used to create table rows
</td>
</tr>
</table>
 </body>
 </html>


OUTPUT



td tag elements are used for table cells



this is a cell



td tag is used to create table column



tr tag is used to create table rows


Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Recent added

TypeScript Class 5

Common Syntax Errors in TypeScript and How to Avoid Them Syntax errors are among the most common issues developers encounter when writing Ty...