KHTML The Little Browser Engine HTML5
4 mins read

Celebrating Innovation: KHTML, The Engine Behind Giants

Celebrating Innovation: KHTML, The Engine Behind Giants, KHTML: The Little Browser Engine That Powered the Web’s Giants, In the world of web browsers, names like Chrome, Safari, and Firefox dominate the conversation. Their rendering engines—Blink and Gecko—are household names in the tech community. But there’s a quiet, unassuming hero in this story, an engine whose […]

How to create a new wordpress page programmatically HTML5
3 mins read

Create a wordpress page programmatically and Assign Elementor Full Width Template

With the help of  code given below, you can create dynamic page programitically in Word press. In this tutorial, I will create post programitically and assign elementor’s Full width Template. Create a wordpress page programmatically and Assign Elementor Full Width Template Code: add_action(‘init’, ‘codentricks_create_pg’,””); function codentricks_create_pg($value){ $assignE=sanitize_text_field($_POST[‘assignE’]); $wordpress_page = array( ‘post_title’ => $value, ‘post_content’ => […]

Education
3 mins read

JavaScript Salary Calculator: Estimate Your Salary

JavaScript Salary Calculator: Estimate Your Salary, In this post we are going make simple application using HTML5, CSS and JavaScript to generate a estimate salary. This JavaScript tutorial is not complex so beginners will find it easy to learn. Folder Structure of project Salary Calculator : Folder name: salary Salary folder contain main file names […]

HTML5
2 mins read

Create a simple MCQ quiz using pure Javascript

In this tutorial we are going to create a simple MCQ quiz using pure Javascript. We will use Javascript function checkAns() to all calculation. Complete source code given below to create  create mcq quiz programmatically so just copy and paste and create html file and open in a browser. Remember we did not use CSS […]

Javascript
3 mins read

LIC Commission Calculator Btech CSE Mini Project

LIC Agent commission calculator mini project for B tech CSE , using HTML5 and pure JavaScript we can easily complete this project . First we need to understand how agent commission calculated .. Calculating LIC (Life Insurance Corporation of India) agent commission involves several factors, including the type of insurance policy, the premium amount, and […]

Javascript
2 mins read

JavaScript adding two integer Computer Lab Btech CSE

In this tutorial we will learn how to create a HTML file(add.html) and add two integer using input element (num1 and num2) and submit button. For calculation we will use pure JavaCript. Create a file name add.html and copy the code given below, save and run in any browser. This java script programme is extensively […]

Web Development HTML5
2 mins read

How to create Animate Text with SVG and CSS

In this tutorial we going to create a Animate Text with SVG and CSS . Every one want something unique in their website, some one go for clean design , some people prefer colorful and vivid design and some want animation and effects. In this tutorial we are using word “Codentricks” and will animate with […]

PHP
7 mins read

How to send attachments using PHP Mail()

In this post, we will going to learn how to can send an email with attachments using PHP mail() function. Sending an attachment with PHP mail() function is painful so people prefer to use PHP Mailer library, but in this post we are not going to use any library, we send attachments using PHP  mail() […]

HTML5
3 mins read

Indian States and Union Territories Drop down list HTML ascending order

Indian States and Union Territories Drop down list HTML ascending order code is given below, if someone is not want to use database for storing and fetching state list then this code going to save our precious time Code for Indian States and Union Territories Drop down list HTML ascending order <select name=”state” id=”state” class=”form-control”> […]