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

3 comments:

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