Pages

Web hosting

Tuesday, 13 August 2013

DWD


Dynamic Web Development

Chapter - 4

  1. What is Scripting Language? Explain different VBScript
    control structures.                                         Marks-7
    
  2. Explain the difference of a Static Webpage and a Dynamic
    Webpage.                                                    Marks-7
    
Chapter-1      Chapter-2      Chapter-3
Chapter-5      Chapter-6      Chapter-7

Monday, 12 August 2013

DWD


Dynamic Web Development

Chapter - 3

  1. List different form elements and explain any three.          Marks-7
  2. What is Cascading Style Sheet? Explain different types
    of style sheet with example.                                Marks-7
  3. What is CSS? Explain Inline and Embedded style sheets
    with example.                                               Marks-7
  4. What is an HTML? Explain any three Text-Formatting tags
    with suitable example.                                      Marks-7
  5. Write short note on Frameset and Frame tag with suitable
    example.                                                    Marks-7
  6. Write short note on Image tag with suitable example.         Marks-7
 Chapter-1           Chapter-2

 Chapter-4           Chapter-5

 Chapter-6           Chapter-7
 

DWD


Dynamic Web Development

Chapter - 2

  1. 1. Explain applications of Internet.                    Marks-6
  2. 1. Explain following terms:(Each contain 2 marks)
    1. Web Server
    2. HTTP
    3. WWW
    4. FTP
    5. Search Engine
    6. TELNET
    7. Internet
 Chapter-1           Chapter-3

 Chapter-4           Chapter-5

 Chapter-6           Chapter-7

 

DWD


Dynamic Web Development

Chapter - 1

  1. Write short note on Web-Server and Web-Browse.            Marks-7
  2. 1. Explain following terms:(Each contain 2 marks)
    1. Web Server
    2. HTTP
    3. WWW
    4. FTP
    5. Search Engine
    6. TELNET
    7. Internet
 Chapter-2           Chapter-3

 Chapter-4           Chapter-5

 Chapter-6           Chapter-7

 

Monday, 22 July 2013

JavaScript Alert Box


JavaScript Alert Box

<!DOCTYPE html>
<html>
<body>

<h1>My First JavaScript</h1>

<p>
JavaScript can react to events. Like the click of a button:
</p>

<button type="button" onclick="alert('Welcome!')">Click Me!</button>

</body>
</html>
Try It Yourself >>

HTML Heading


HTML Heading

<!DOCTYPE html>
<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>
Try It Yourself >>
-: More HTML Example :-

HTML Heading Align Attribute

<!DOCTYPE html>
<html>
<body>

<h1 align="center">This is heading 1</h1>
<h2 align="left">This is heading 2</h2>
<h3 align="right">This is heading 3</h3>
<h4 align="justify">This is heading 4</h4>

</body>
</html>
Try It Yourself >>
-: More HTML Example :-

Thursday, 18 July 2013

HTML Tutorial


HTML

With HTML you can create your own Web site.
This tutorial teaches you everything about HTML.
HTML is easy to learn - You will enjoy it.
Examples in Each Chapter Click

Monday, 15 April 2013

Drop down menu with page redirection

<html>
  <head>

<script language="javascript" type="text/javascript" >
    function jumpto(x)
    {
    if (document.form1.jumpmenu.value != "null")
    {
    document.location.href = x
    }
    }
</script>
  </head>

  <body>

<p>Drop down Menu:</p>
<form name="form1">
<select name="jumpmenu" onChange="jumpto(document.form1.jumpmenu.options[document.form1.jumpmenu.options.selectedIndex].value)">
  <option>Jump to...</option>
  <option value=http://yogeshtourism.blogspot.in/>Gujarat Tourism</option>
  <option value=http://yognet.blogspot.in/>JavaScript</option>
  <option value=http://www.w3schools.com/>HTML</option>
  <option value=http://www.quackit.com/css/>CSS</option>
  <option value=http://www.quackit.com/sql/tutorial/>SQL</option>
  <option value=http://www.quackit.com/database/tutorial/>Database Tutorial</option>
  <option value=http://www.quackit.com/web_hosting/>Web Hosting Tutorial</option>
</select>
</form> 
 
  </body>
</html>
-->
Jump Menu: