NavBar

Wednesday 13 June 2018

Web Site Development Languages.

                                                 Previous Articles

Why Website is important?

  • 24/7 Accessibility.
  • Convince.
  •  Your product or information show in worldwide.
  • It provides social proof. 
  • Website is a marketing channel.

Popular languages for developing attractive websites.


1.HTML

2.CSS

3.JAVASCRIPT

4.PHP

5.AJAX

6.JQUERY

7.JAVA


1.HTML:- HTML stands for HYPER TEXT MARKUP LANGUAGE .It is an standard language for creating websites and web applications.HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML specification which was published in 1995.HTML describes the structure of web pages using markup.HTML elements are represented by tags.The output shown in the browser.like(Google Chrome,Firefox,IE,Safari). 

Sample Code Of HTML


<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>WelCome Web Coders</h1>
<p>This Is My First Paragraph</p>

</body>
</html>


2.CSS:- CSS stands for CASCADING STYLE SHEETS.cascading style sheets describes the style of an HTML document. CSS  describe how HTML content display.Using CSS we also set height,width,color,size of content & many more.

Sample Code Of CSS

body {
    background-color:#33FFFO 
;
}

h1 {
    color: black;
    text-align: center;
}

{
    font-size: 20px;
}


3.JavaScript:-JavaScript is an high level-interpreted programming language.JavaScript enables interactive web pages and hens it is an important part of an web Sites.





4.PHP:- PHP is an server side scripting language for developing dynamic web pages.PHP is free for use.PHP stands for hypertext preprocessor.PHP code may be embedded into HTML code or it can be used in combination with different web templates.Using PHP we also create databases.


Sample Code Of PHP

<html>
<html>
<body>

<?php
echo "My first PHP Page...";
?>

</body>
</html>


5.JAVA:-Java is an general purpose computer programming language that is class based object oriented language.We can create desktop applications as well as web applications using java.For building web applications we use Servlet,JSP,Struts,Hibernet technologies.


                                                 Next Articles


No comments:

Post a Comment