We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4
INDEX
S NO DATE NAME OF THE PROGRAM PAGE NO SIGN
Write a HTML program, to explain the working of lists, it should have an ordered list, unordered list, 1a nested lists and ordered list in an unordered list and definition lists. Write a HTML program, to explain the working of 1b hyperlinks using <a> tag and href, target Attributes. Create a HTML document that has your image and your friend’s image with a specific height and 1c width. Also, when clicked on the images it should navigate to their respective profiles. Write a HTML program, in such a way that, rather than placing large images on a page, the preferred technique is to use thumbnails by setting the height 1d and width parameters to something like to 100*100 pixels. Each thumbnail image is also a link to a full-sized version of the image. Create an image gallery using this technique. Write a HTML program, to explain the working of 2a tables. (use tags: <table>, <tr>, <th>, <td> and attributes: border, rowspan, colspan) Write a HTML program, to explain the working of tables by preparing a timetable. (Note: Use 2b <caption> tag to set the caption to the table & also use cell spacing, cell padding, border, rowspan, colspan etc.) Write a HTML program, to explain the working of forms by designing Registration form. (Note: Include text field, password field, number field, 2c date of birth field, checkboxes, radio buttons, list boxes using <select>&<option> tags, <text area> and two buttons ie: submit and reset. Use tables to provide a better view) Write a HTML program, to explain the working of frames, such that page is to be divided into 3 parts on either direction. (Note: first frame image, 2d second frame paragraph, third frame hyperlink. And also make sure of using “no frame” attribute such that frames to be fixed). Write a HTML program, that makes use of <article>, <aside>, <figure>, <figcaption>, 3a <footer>, <header>, <main>, <nav>, <section>, <div>, <span> tags. Write a HTML program, to embed audio and video 3b into HTML web page S NO DATE NAME OF THE PROGRAM PAGE NO SIGN Write a program to apply different types (or levels of styles or style specification formats) - inline, 3c internal, external styles to HTML elements. (identify selector, property and value). Write a program to apply different types of selector forms ● Simple selector (element, id, class, group, universal) 4 ● Combinator selector (descendant, child, adjacent sibling, general sibling) ● Pseudo-class selector ● Pseudo-element selector ● Attribute selector Write a program to demonstrate the various ways 5a you can reference a color in CSS Write a CSS rule that places a background image halfway down the page, tilting it horizontally. The 5b image should remain in place when the user scrolls up or down. Write a program using the following terms related to CSS font and text: 5c i. font-size ii. font-weight iii. font-style iv. text-decoration v. text-transformation vi. text-alignment Write a program, to explain the importance of CSS Box model using 5d i. Content ii. Border iii. Margin iv. padding Write a program to embed internal and external 6a JavaScript in a web page Write a program to explain the different ways for 6b displaying output Write a program to explain the different ways for 6c taking input Create a webpage which uses prompt dialogue box to ask a voter for his name and age, Display the 6d information in table format along with either the voter can vote or not Write a program using document object properties 7a and methods Write a program using window object properties 7b and methods Write a program using array object properties and 7c methods S NO DATE NAME OF THE PROGRAM PAGE NO SIGN Write a program using math object properties and 7d methods Write a program using string object properties and 7e methods Write a program using regex object properties and 7f methods Write a program using date object properties and 7g methods Write a program to explain user-defined object by 7h using properties, methods, accessors, constructors and display Write a program which asks the user to enter three integers, obtains the numbers from the user and outputs HTML text that displays the larger number 8a followed by the words “LARGER NUMBER” in an information message dialog. If the numbers are equal, output HTML text as “EQUAL NUMBERS” Write a program to display week days using switch 8b case Write a program to print 1 to 10 numbers using for, 8c while and do-while loops Write a program to print data in object using for-in, 8d for-each and for-of loops Develop a program to determine whether a given number is an ‘ARMSTRONG NUMBER’ or not. 8e [Eg: 153 is an Armstrong number, since sum of the cube of the digits is equal to the number i.e.,13 + 53+ 33 = 153] Write a program to display the denomination of the amount deposited in the bank in terms of 100’s, 8f 50’s, 20’s, 10’s, 5’s, 2’s & 1’s. (Eg: If deposited amount is Rs.163, the output should be 1-100’s, 1- 50’s, 1- 10’s, 1-2’s & 1-1’s) Design a appropriate function should be called to display ● Factorial of that number 9a ● Fibonacci series up to that number ● Prime numbers up to that number ● Is it palindrome or not Design a HTML having a text box and four buttons named Factorial, Fibonacci, Prime, and 9b Palindrome. When a button is pressed an appropriate function should be called to display 9c Registration Page Validation