This document provides a list of experiments for a Web Technology course. It includes 5 topics: HTML, CSS, XML, JavaScript, and PHP. For each topic, it lists 2 programs with their aims. The programs cover basic concepts like making a resume in HTML, using CSS for styling, creating an XML document to store student data, JavaScript programs for validation and calculations, and PHP programs to output data and interface with databases. The experiments aim to teach fundamental skills in these web technologies.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
483 views
Practical List - WT
This document provides a list of experiments for a Web Technology course. It includes 5 topics: HTML, CSS, XML, JavaScript, and PHP. For each topic, it lists 2 programs with their aims. The programs cover basic concepts like making a resume in HTML, using CSS for styling, creating an XML document to store student data, JavaScript programs for validation and calculations, and PHP programs to output data and interface with databases. The experiments aim to teach fundamental skills in these web technologies.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
Government Engineering College, Patan
Dept. of Computer Science & Engineering
List of Experiment Name of Subject: Web Technology Subject Code: 2160708 Semester: 6th Name of Faculty: Prof. Shraddha Modi
Topic Progra Aim of Program Hrs
m . 1. HTML 1 Make resume with the help of basic HTML tags. 2 1 Write a HTML code to display student registration form. ) 2 Write a HTML code for section demo. ) 2. CSS 1 Use CSS in resume which was made using only HTML tags. 2 1 Write a CSS code that create table with odd rows white color ) and even rows blue color. 2 Write a CSS code to provide link after visited blue color and ) before visited red color. 3 Write the following styles in separate CSS file and also show ) how to link this CSS file in HTML file. (a) The headings should have normal font style and font size should be 120%. (b) Apply a background image “abcd.jpg”. Write a paragraph about it and define a class arial for paragraph which defines font family. 4) CSS code to display GEC-Patan information. 3. XML 1 Introduction of XML with sample program. 2 1 To Design an XML document to store information about a ) student in an engineering college affiliated to GTU. 2) The information must include RollNo, Name, Name of the College, Branch, Year of Joining, and e-mail id. Make up sample data for 5 students. Create a CSS style sheet and use it to display the document. Create XML page to store employee information. 4. 1 Introduction of JavaScript with sample program. Javascript 2 1) Write javascript code to validate username and password (password length must between 6 to 12 characters. User name should not start with _,@, or any number, both are not blank). 2) Write a Javascript code to build a calculator. 3) Write a Javascript program to calculate area of triangle and rectangle. 4) Write a sample program to demonstrate how a user defined objects are created in JavaScript? How a constructor can be used to populate data object? 5) Write a Javascript to take 2 digit number and then separate this two digits then multiply first digit by itself for second digit times.(Exa: 23, Output: 2 is multiply 3 times answer is: 8) 6) Write a Javascript to print characters of a string at odd position. 5. PHP 1 Introduction of PHP with sample program. 2 1 Write PHP program to print whether given no is odd or even. ) 2) Write PHP program to print first 10 Fibonacci number.
3) Write modules using HTML and PHP to store information of
employee (employee id, job title, years of experience) in an array. And output the data to a web page by arranging the employees in ascending order of experience. 4) Create a database called country and create table called city having fields (cityname, area, population) using PHP commands. Create HTML form to get the city data and write a script to insert that data into the table.