by admin | Jun 27, 2018 | JavaScript
JavaScript Email validation We can validate the email with the help of JavaScript. Here we check the condition related to any email id, like email it must have “@” and “.” sign and also email id must be atleast 10 character. There are many...
by admin | Jun 27, 2018 | JavaScript
JavaScript Password Validation Here we see that how to validate any password field. Like password field can be blank and length of password is minimum 8 characters. Example <!DOCTYPE html> <html> <head> <script> ...
by admin | Jun 27, 2018 | JavaScript
JavaScript Re-type Password Validation Example <!DOCTYPE html> <html> <head> <script> function pass_validation() { var firstpassword=document.f1.password1.value; var secondpassword=document.f1.password2.value; ...
by admin | Jun 27, 2018 | JavaScript
JavaScript Page Redirect The window.location object can be used to get the current page address (URL) and to redirect browser to new page. In some websites when we visit, we face a situation where we clicked a URL to reach a page X but internally it directed us to...
by admin | Jun 27, 2018 | JavaScript
JavaScript Print JavaScript help’s the functionality using the print function of window object. In JavaScript print function window.print() print the current web page when it executed. We can call function directly using onclick event. Example...
by admin | Jun 27, 2018 | CSS
CSS Introduction: CSS stands for Cascading Style Sheet. It is a design language which is used to design the web pages. It was developed by Håkon Wium Lie on October 10, 1994. It provides powerful technique over the presentation of HTML document. It handles the look...
by admin | Jun 27, 2018 | CSS
You can use CSS(Cascading Style Sheet) in four ways. These are given below: The given above CSS type, in which various technique will be used. These are different from each other and their different advantages. Embedded or Internal CSS Inline style External style...
by admin | Jun 27, 2018 | CSS
The CSS Opacity property is used to set the clarity of the image. It is defined as degree and specify the transparency of an element. Note: Opacity value will be less than 1. Let us see an example of CSS opacity: <!DOCTYPE html> <html> ...
by admin | Jun 27, 2018 | CSS
CSS Link is used to create styled link. There are various ways to implement it. Styling Links Link can be styled with CSS properties like color, font-family, background etc. Example: <!DOCTYPE html> <html> <head> <style> a { ...
by admin | Jun 27, 2018 | CSS
CSS table provides better look and feel. There are various properties of CSS table that are given below. border border-collapse padding width height text-align color background-color CSS Table Border You can set the border of the table by using table tag th and td....