- Basic Computer
- ...
HTML Table
Tables are a great way to present data visually. Tables allow us to display large amounts of data in a structured way (rows and columns) that is easy to read and understand. In this blog, we will learn about HTML tables. You will understand the basics of HTML tables, such as rows, cells, adding captions, and making […]
Disable Copy,Paste,Print Option
To disable Copy,Paste,Print Option just paste this code in header part in your page.
Html Class 29-12
<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* […]