Create a letterhead, Identity card of any company or institution that you got and insert theWatermark with that company name in the document
- Basic Computer
- ...
Excel Formulas and Functions
Let’s now look at the top Excel formulas you must know. In this article, we have categorized Excel formulas based on their operations. Let’s start with the first Excel formula on our list. SUM The SUM() function, as the name suggests, gives the total of the selected range of cell values. It performs the mathematical […]
- Basic Computer
- ...
MS Excel Totorial
What is MS Excel? MS Excel is a spreadsheet program where one can record data in the form of tables. It is easy to analyse data in an Excel spreadsheet. How to open MS Excel? To open MS Excel on your computer, follow the steps given below: Click on Start Then All Programs Next step […]
Count Of Select Box
If we want to return total number of dropdown value Then code will be in jquery is var len = $(‘#selectboxID option’).length; alert(len); If we want to return total number of selected dropdown value Then code will be in jquery is var len = $(‘#selectboxID option:selected’).length; alert(len);
Disable past date in Contaact Form 7
To Set Current Date as MinDate in the form 7 calendar [date* date-start min:today step:1 class:required] To Set Any specific Date as MinDate in the form 7 calendar [date* date-start min:2020-07-01 step:1 class:required] To Set MinDate after some days or week from current date in the form 7 calendar [date* date-start min:today+10days step:1 class:required] [date* […]
Summernote Image Attributes
If you want to add image attributes in summernote then please follow the steps– Step 1: load summernote jshttp://<script src=”https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.js”></script> Step 2 : load summernote attribute jshttp://codersqube.in/wp-content/uploads/2024/01/summernote-image-attributes.js Step 3: Step 4: Add this js
Computer Keyboard Shortcut Keys
Shortcut Keys of Computer A to Z (Basic) Basic Computer Keyboard Shortcut Keys A to Z Shortcuts Uses of Shortcut keys Alt + F File menu options in the current program Alt + E Edits options in the current program F1 Universal help (for any sort of program) Ctrl + A Selects all text Ctrl + X […]
- Basic Computer
- ...
Html Class 1
<!DOCTYPE html>
<html>
<head>
</head>
<body >
<a href="https://www.yahoo.com/">click me this</a>
<div style="background-color:red">sample div area </div>
<div style="background-color:green">sample div area </div>
<div style="background-color:orange">sample div area </div>
<div >sample div area
<h1 style="color:blue;font-family:courier;font-size:50px" >My First Heading h1</h1>
<h1 style="color:blue;">My second Heading h1</h1>
<h3 style="color:red;">My third Heading h3</h3>
<h4>My Forth Heading h4</h4>
<p>This is paragraph tag</p>
<p>This is paragraph tag</p>
</div>
<img src="C:\Users\admin\Desktop\555\1200.jpg" alt="avcbgbhb" width="700px" height="700px">
</body>
<footer>
</footer>
</html>
Number format according to Indian Currency
One of the tasks I usually come across while working on some of the more commercial web applications is to display a number in INR i.e Indian National Rupee ( ₹ ) format which makes it really easy to perceive the number as Indian Rupees. Let me show you how to format a number to […]
- Codeigniter
- ...
Upload base64 to file in PHP
While we have working with API for mobile or web application , You will notice that they will send the format of images in Base64 encoded. So in that case, you will need to move the Base64 encoded image to server as a image file.and have to save it in the folder Example Core PHP: […]