How to use CSS selector in CSS

How to use CSS selector in CSS

agyanadda
Interal CSS p{ color:red; } #abc{ color:blue; } .ab{ color:green; } Hello How r u[Tag based calling] Hello[ Id based call] My Name is Mohan
How to use web Font in CSS

How to use web Font in CSS

agyanadda
@font-face{ font-family:Aclonica; src: url(Aclonica.ttf); } @font-face{ font-family:Acme-Regular; src: url(Acme-Regular.ttf); } h1{ font-family:Aclonica; } h2{ font-family:Acme-Regular; } AclonicThe @font-face Rule AclonicThe @font-face Rule
How to create auto focus in JavaScript validation

How to create auto focus in JavaScript validation

agyanadda
function validatee(){ // 1st Method if(document.forms['frm']['nm'].value == ""){ alert( "Please provide your name!" ); document.forms['frm']['nm'].focus() ; return false; } // 2nd Method /* nmm=document.forms['frm']['nm']; if(nmm.value== ""){ alert( "Please
How to add,subtract by using function and Switch statement in Javascript

How to add,subtract by using function and Switch statement in Javascript

agyanadda
How to create addition, subtraction by using function and switch statement. alert("1. Addition "+"\n"+"2.Subtraction"); var n1,n2,res; var ch=parseInt(prompt("select your choice:")); // string (parseInt()=>convert into number) function inp(){ n1=parseInt(prompt("Enter
Language Constructors In PHP

Language Constructors In PHP

agyanadda
Language Constructors in PHP There is huge collection of in build Language constructor in PHP. That helps us to call  directly by PHP files.  Like echo() is not
How to insert records in Laravel using database

How to insert records in Laravel using database

agyanadda
Add records in DB in laravel 1.     Create model: php artisan make:model employe –m Model created:  name: employe [ apps/provider ]   <?php namespace App; use Illuminate\Database\Eloquent\Model; class
Laravel First Program

Laravel First Program

agyanadda
How to create Modal . controller and index page in Laravel ================================================= Model= college.php =================================================
Click button copy to clipboard using jQuery

Click button copy to clipboard using jQuery

agyanadda
Bootstrap Example function copyToClipboard(element) { var $temp = $(""); $("body").append($temp); $temp.val($(element).text()).select(); document.execCommand("copy"); $temp.remove(); } Thanku for copy me Click to copy ME