Part-5 Prac 2:Write a JavaScript which validate all controls and retrieve all possible value from controls and display from Registration form of Practical 2 of Part 2. Also manage sessions in this program using JavaScript.



By performing this practical I understood different types of tags of html and their attribute.
I have implement tags such as <form>,<lable>,<button>,<input>, <b>, <ul>, <a>, <style>, <div> etc.
and attribute such as float of style, bgcolor, font family, align, border, padding, background, margin, border-radius etc.

<form>
 it is used to create an html form for user for user input.The <form> element can contain one or more of the following form elements:
  • <input>
  • <textarea>
  • <button>
  • <select>
  • <option>
  • <optgroup>
  • <fieldset>
  • <label>
  • <output>
<style> 
Inside the style tag we are input a type like fontcolor,border,fontsize,background etc.

<div>
inside the div tag we can make a separate division for a particular navigation bar or a main page or a right alignment division or left alignment division or similar to top or bottom level division. div tag is a like block level tag.

 JavaScript:
In this practical validations for blank entries are used. If there is any blank entry then it will raise a pop up for the same. 

Name : Naisarg Modi
ID : 18CE055

Comments

Popular posts from this blog

Part-7 Prac 2: Study and demonstrate php syntax, data type, variable, function, array, superglobal variable and form (Self-learning exercise using this link: https://www.w3schools.com/php/).

Part-6 Prac 5 :Create Hello World program using Node.js.