Skip to main content

Posts

Showing posts from August, 2021

Write a query to add email column to student table in SQL Server

In this tutorial, you will learn the query to add an email column to the student table and query to add email validation using a single query in SQL Server . Let us see how to add an email column to the table. Before you want to know about the SQL Server database and table because when we use to add in the query before the column will not add in the table so, we are use alter table statement to add one or more columns to the table. Alter table Add statement appends the new column to a table: First, we have created a database I am creating database name 'school' create database school; ---> Execute F5 use school; so, the above query uses to 'create a database' and 'use' to change the database to school. create table schooldatabase ( student_id varchar(30) not null, student_name varchar(25) not null, student_class varchar(25) not null ); And then create a table and named it schooldatabase and then create 3 column stu...

How to link Javascript to html

How to Link Javascript to HTML In this article, we will learn how to link javascript to HTML and some interesting codes for example to show. A Javascript (Js) is the most popular programming language in web Technologies. Javascript is used to create a dynamic web page and modern browsers are support javascript specifications and continue to update or adapt by browsers. Javascript is everywhere in the website you just create a page you want to show some slider image, pop up, sticky top button code should be in javascript.  The web developer has become one of the most open and opportunities in javascript. Most commonly using HTML, CSS, and js can embed code within the web page using HTML script tag and to execute the code in browsers. In general, web developers choose Js for code embedded. Place of the script tag In the HTML script tag are allow in either <head> tag or <body> tag elements, and should tag to place in . and most the web developer are recommend...

How to create Datepicker jQuery UI

 How to create Datepicker jQuery UI In this article, How to create a datepicker in jquery UI and you can easy to customize the date format as you can and users may allow to enter the date easily and make a feel easy and navigate button used to slide months to choose the particular field. datepicker() method helps on HTML elements that can change the appearance of datepicker format to provide by jquery and datepicker () by use default <input> elements and click on the input field the datepicker calendar open in small overlay and choose the date and date appear on the text field wrapped set into a datepicker control and use CSS classes transforms the <input>,   <div>,  <span>  to simply attach the datepicker using the above HTML elements. And I'm using Bootstrap for design. syntax: datepicker () are two types: $(selector).datepicker(options) method $(selector).datepicker("action",[params]) datepicker(option) are declares that an <inp...

How to Create a calendar design template using HTML and CSS

 How to Create a calendar design using HTML and CSS A simple and straightforward free create a  calendar template design using HTML, CSS, and easy to understand and recreate the template like easy approach. Instead of following the old traditional look and get free grid calendar glass looks based on HTML and impressive Looks. Making sure is something you can learn and save some time and effort with ready-to-use design. And complete different variations in the calendar something new structure. 1. Mat Calendar Design Mat Classic effect of calendar design template looks pretty.   Download 2. Glass effect Look calendar design The calendar design template is made using the Glassmorphism glass effect and pretty looks nice. Download 3. Classic Mountain calendar design Now the calendar is made old classic look and clean simple and look nice using HTML and CSS. Download 4. Free cool Image slider image calendar...