Wednesday 19 August 2015

Computer Science Projects|IT Projects

Code Shoppy a leading company doing Computer Science projects such as Web development, Android development, Java,Big data etc. Arudhra Innovations also offers more than 50 courses on Web designing, Android development etc., at low cost.An Example for creating web pages using HTML is as follows:

CREATING FORMS :

HTML ‘s  form  support  is  simple  and  complete.  A   handful  of  HTML  tags  create  the  most  popular  elements  of  modern  graphical  interfaces,  including  text  windows,  check  boxes   and  radio  buttons,  pull  down  menus  and  push  buttons.

Each  HTML  form  has  three  main  components  :  the  form  header  ,  one  or  more  named  input  fields  and  one  or  more  action  buttons.

The  simplest  web  page  program
  •       <HTML>
  •       <HEAD>
  •       <TITLE>
  •       </TITLE>
  •       </HEAD>
  •       <BODY>
  •       </BODY>
  •       </HTML>

HTML VERSIONS :



                Version
                           Year
  HTML
              1991
  HTML2.0
              1995
  HTML3.2
              1997
  HTML4.01
              1999
  XHTML
              2000
  HTML5
              2014

HTML PAGE STRUCTURE :

Below  is  a  visualization  of  an  HTML  page  structure :

<html>
<head>
<title>  page  title  </title>
</head>
<Body>
<h1> This  is  a  heading  </h1>
<p> This  is  a  paragraph .</p>
<p> This  is  another  paragraph  .</p>
</body>
</html>

Only  the  body  area  ( the  white  area)  is  displayed by  the  browser.