<html>
<head>
<title>Html class 1st</title>
</head>
<body >
<table border="1" width="100%" >
<tr>
<td colspan="4" style="text-align: center"; >Table</td>
</tr>
<tr style="background-color: #d6ce16;color:green;font-size:40px;">
<td>sl</td>
<td>name</td>
<td>age</td>
<td>class</td>
</tr>
<tr style="background-color: red;">
<td>1</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>3</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<td>4</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
</table>
<h1 style="color: #d6ce16 ">This is h1 tag</h1>
<h2 style="color:green">This is h1 tag</h2>
<h3 style="color:blue">This is h1 tag</h3>
<p style="color:pink">this is p tag</p>
<div style="background-color: #d6ce16;">this is div tag</div>
<div style="background-color:#0e0afa"; >this is another div tag</div>
<marquee direction="left"><h1 style="color: #d6ce16;font-size:80px;">1welcome to html class</h1></marquee>
<img src="C:\Users\admin\Desktop\APURBA\paint.png" width="200px";height="200px";>
</body>
</html>
MS Word Practric Set
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 […]