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
CSS
agyanadda
December 26, 2018
@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
javascript
agyanadda
December 26, 2018
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
javascript
agyanadda
December 25, 2018
How to create Calculator by using JavaScript. It is so simple only you must have to know the little bit of DOM( Document Object Modal). Agyanadda cal input[type="button"]{width:100%}
javascript
agyanadda
December 24, 2018
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
PHP
agyanadda
December 22, 2018
How to create link in dropdown in HTML.It is so simple to create you can see the given example Home Contact function Select(elm) { window.location = elm.value+".php"; }
PHP
agyanadda
December 22, 2018
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
PHP
agyanadda
December 22, 2018
Escaping From HTML: Everything outside of a pair of opening and closing tags ore Elements is ignored by the PHP parser. It allows PHP files to have mixed
Laravel
agyanadda
December 15, 2018
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
agyanadda
December 15, 2018
How to create Modal . controller and index page in Laravel ================================================= Model= college.php =================================================
Database
agyanadda
December 15, 2018
In This post we will discuss: How to connect mysql using command prompt (CMD) Show Databases How to select database How to Create tables How to show structure
javascript, Jquery
agyanadda
December 15, 2018
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
Database
agyanadda
December 14, 2018
How to start Auto_increment from 1001 ALTER TABLE batchinfo AUTO_INCREMENT = 101;
Subscribe to:
Posts (Atom)