Posts

Showing posts with the label Web Technology

Using Frame Divide The Web Page As Given

Image
Practical :   7 Subject   :   Web Technology Aim :   Using frame Divide the web page as following. Download Code: Frames.html <!DOCTYPE html> <html> <head>             <title>Frames</title> </head> <frameset rows="25%,50%,25%" >                         <frame src="header.html"></frame>                         <frameset cols="40%,*">                         <frame src="frame1.html"></frame>             ...

Javascript Aktivitas To Perform The Given Function

Image
Practical :   11 Subject   :   Web Technology Aim :   Write JavaScript aktivitas to perform the following function: A. To calculate Average of integer number (1 to n) B. To check whether given number is prime or not C. To calculate factorial of n D. To print current date & time Download HTML Code: <!DOCTYPE html> <html> <head> <title>prac11</title> <link rel="stylesheet" type="text/css" href="prac11.css"> <script type="text/javascript" src="prac11.js"></script> </head> <body align="center"> <div class="box blue one"> <h4>1. Enter a number to do average from 1:</h4> <input class="b" type="text" id="data1" placeholder="Enter a number here"></input> <button class="b" type="button" name="go" onclick="average()"...

Html Student Registration Form Using Css

Image
Practical :   8 Subject   :   Web Technology Aim :   Create a student registration form using <form> tag. The registration form must consist of following information : First Name, Middle Name, Last Name, Gender, Address, Phone No., email id, Hobbies, City, State, Country, College Name. Download Code: <!DOCTYPE html> <html> <head> <title>Form</title> <style type="text/css"> table,td {border: 0px solid black; border-collapse: collapse;padding: 5px;} td {padding: 5px;} input.in,textarea,select { padding: 5px;  border-width: 2px;  border-color: #00ccff; border-radius: 2px;  border-style: solid; } </style> </head> <body> <h1 align="center">Student Form</h1> <form> <table align="center"> <tr> <td>Name:</td> <td><input name="fname" class="in" type="tex...