Thursday, 29 August 2024

Write a Program to Background Color In Html

 <!DOCTYPE html><html><body style="background-color:#DFFF00;"><h1>This is a heading</h1><p>This is a paragraph.</p></body></html&...

Write a Program to Inline CSS in Html

 <!DOCTYPE html><html><body><p>I am normal</p><p style="color:Green;">I am Green</p><p style="color:#cb4335;">I am flush mahogany red</p><p style="font-size:60px;">I am big</p></body></html&...

Write a program to Ordered List And Unordered List

 <!DOCTYPE html><html><body><h2>An Unordered HTML List</h2><ul>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ul>  <h2>An Ordered HTML List</h2><ol>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li>&l...

Write a Program to UnOrdered List in Html

 <!DOCTYPE html><html><body><h2>An UnOrdered HTML List</h2><ul>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ul>   </body></html&...

Write a Program to Ordered List ih

 <!DOCTYPE html><html><body><h2>An Ordered HTML List</h2><ol>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ol> </body></html&...

Write a program to button ih html

 <!DOCTYPE html><html><body><h2>HTML Buttons</h2><p>HTML buttons are defined with the button tag:</p><button>Click me</button></body></html&...

Write a program to links in html

 HTML Links - HyperlinksHTML links are hyperlinks.You can click on a link and jump to another document.When you move the mouse over a link, the mouse arrow will turn into a little hand.Note: A link does not have to be text. A link can be an image or any other HTML element!HTML Links - SyntaxThe HTML <a> tag defines a hyperlink. It has the following...

Write a Program To Heading Tag In H1 to H6

 <!DOCTYPE html><html><head><title>Heading Pagee</title></head><body bgcolor="pink" align = "center">  <b>Heading tags, also known as header tags,<br> in HTML are used to differentiate headings and subheadings from the rest of the content on a page. <br>There are six heading levels, from H1 to H6, <br>with...

Saturday, 24 August 2024

Write a Program to Registration Page in HTML

<!DOCTYPE html><html><head><title>Registration Example</title></head><body bgcolor="gray" align = "center">  <table border=1 width="500px;" Height="300px;" bgcolor="Lightskyblue" align="center"><tr> <td> Enter Name:<input type="text" name="n1"></td></tr><tr> <td> Enter Address:<textarea...

Friday, 23 August 2024

Write a Program to a Paragraph in html

<!DOCTYPE html><html><head><title>Paragraph Example</title></head><body><p>I am a paragraph.</p></body></html&...

Write a Program Leaf Year or Not in Javascript

 <!DOCTYPE html><html><head> <title>leap year</title> <script type="text/javascript">     var b,c;     var a=prompt("Enter year");     b=a%4;     c=a%400;     if(b==0||c==0)     {        alert("Given number is leaf"); ...

Write a program Arithmatic of Two Number in C

#include<stdio.h>#include<conio.h>void main(){int a,b,c;clrscr();printf("Enter Two Num:");scanf("%d %d",&a,&b);c=a+b;printf("The Addition is:%d\n",c);c=a-b;printf("The Substratcion is:%d\n",c);c=a*b;printf("The Multiplicationn is:%d\n",c);c=a/b;printf("The Division is:%d\n",c);getch(...

Wednesday, 21 August 2024

Write a program Count Vowels in Javascript

 <html><body><title>find number of vowels in a string in JavaScript</title><script type="text/javascript">function GetVowels() {var str = document.getElementById('txtname').value;var count = 0, total_vowels="";for (var i = 0; i < str.length; i++) {if (str.charAt(i).match(/[a-zA-Z]/) != null) {// findVowelsif (str.charAt(i).match(/[aeiouAEIOU]/)){total_vowels...

Sunday, 18 August 2024

Create Login Page in HTML

HTML Login FormA login form is one of the most vital features in web development. It makes it possible to identify users and, based on that identification, either admit entry to a private area or block it.To standard field Architecture, such a form usually combines a field for input of a username or e-mail address with another field for a password. It features a button to...

Data Science using Spreadsheet Software Assignment 3

Printing Workbooks select the cells you want to print and then set that area as the print area   Steps to set a print area: Select the cells...