Monday, January 7, 2019

HTML Class 8 # .



HTML Class 8 #.

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

HTML Class 8 #.

In This class i tell you how to add image in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
   <img src="Link of your Picture"></img>
 </body>
 </html>


OUTPUT












Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Sunday, January 6, 2019

HTML Class 9 # .


HTML Class 9 #.

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

HTML Class 9 #.

In This class i tell you how to set image size in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
   <img src="Link of your Picture" width="50" height="70"></img>
 </body>
 </html>


OUTPUT














Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Saturday, January 5, 2019

HTML Class 10 # .



HTML Class 10 #.

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

HTML Class 10 #.

In This class i tell you how to set image border in a page .

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
   <img src="Link of your Picture" border="5"></img>
 </body>
 </html>


OUTPUT














Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Friday, January 4, 2019

HTML Class 11 # .


HTML Class 11 #.

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

HTML Class 11 #.

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

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
   <a href="https://wasimteach.blogspot.com/2019/05/html-class-12.html"> Next Class</a>
 </body>
 </html>


OUTPUT

Next Class




Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Thursday, January 3, 2019

HTML Class 12 #.


HTML Class 12 #.

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

HTML Class 12 #.

In This class i tell you how to set Link on image in a page .

by using <a href="url"> <img src="image url"></img></a> you can set the link on any image the following example show the use of tag to link the image.

Example :

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
   <a href="https://wasimteach.blogspot.com/2019/05/html-class-12.html">    <img src="Link of your Picture" width="50" height="70"></img>   </a>
 </body>
 </html>


OUTPUT














Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Wednesday, January 2, 2019

HTML Class 13 #.


HTML Class 13 #.

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

HTML Class 13 #.

In This class i tell you how to change Background color in a page .

Background color mean your web page whole color . this tag is used as in HTML <body bgcolor="red">

Example:

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body bgcolor="yellow">

 bgcolor="color"  in body tag change the body color.

 </body>
 </html>


OUTPUT


   bgcolor="color"  in body tag change the body color












Thanks For reading :

Meet you in next Class.

Comment me if you have any trouble or question .

Tuesday, January 1, 2019

HTML Class 14 #.


HTML Class 14 #.

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

HTML Class 14 #.

In This class i tell you how to make Strike the font in a page .

Strike tag is use for lining on the text like this is strike example this lining is used for mostly cut the prices. for example this item is 60$ original price 75$  
the tag is use as <strike> your text </strike>

Example.

Code :



<!DOCTYPE html>
 <html>
 <head>
 <title>wasim teach</title>
 <meta charset="UTF-8"/>
 <link rel="stylesheet" href="" type="text/css"/>
 </head>
 <body>
<s>This is a strike Font with tag s </s>

 </body>
 </html>


OUTPUT

This is a strike Font with tag s

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...