Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Thursday, 13 February 2025

Use HTML elements and tags

 Here's an example HTML document that uses various HTML elements and tags:<!DOCTYPE html><html><head>  <title>Example HTML Document</title></head><body>  <!-- Header section -->  <header>    <h1>Welcome to My Website</h1>    <nav>      <ul>        <li><a href="#home">Home</a></li> ...

Wednesday, 12 February 2025

Enlist various HTML elements and tags

 Here is a comprehensive list of HTML elements and tags:Structural Elements1. <!DOCTYPE html> - Document type declaration2. <html> - Root element of the HTML document3. <head> - Contains metadata about the document4. <title> - Sets the title of the page5. <body> - Contains the content of the HTML documentHeadings1. <h1> - Main heading2. <h2> - Subheading3. <h3> - Sub-subheading4. <h4> - Sub-sub-subheading5....

WHAT IS A HTML

WHAT IS A HTML  HTML (HyperText Markup Language) is the standard markup language used to create web pages. It is the backbone of a website, providing the structure and content that the web browser renders to the user.HTML is made up of a series of elements, represented by tags (<>), which are used to wrap around content and apply meaning to it. These elements can be used to define headings, paragraphs, images, links, forms, tables,...

Friday, 31 January 2025

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...

Thursday, 30 January 2025

Write a program Image Maping

 Image MapsThe HTML <map> tag defines an image map. An image map is an image with clickable areas. The areas are defined with one or more <area> tags.Try to click on the computer, phone, or the cup of coffee in the image below:<!DOCTYPE html><html><body><h2>Image Maps</h2><p>Click on the computer, the phone, or the cup of coffee to go to a new page and read more about the topic:</p><img...

Sunday, 12 January 2025

Write a program Design web Page using HTML

<-- HyperText Markup Language--> <html><--to store metadata about a web page--><head><--to define the title of a document.--><title>Login Page</title></head><--to define the main content of a web page--><body><body align="center">     <h1 style="color: red;">Home Page</h1>    <table border="1" width="1000px;" height="50px;" align="center">  ...

Monday, 16 December 2024

Write a program to login page using Form Tag in html

Write a program to login page using Form Tag in html<html><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Form Tag</title></head><body> <table border="1"> <form> <tr> <td>Enter Your Name:<input type="text" name="t1" required></td> </tr> <tr> <td>Enter Password:<input type="Password"...

Thursday, 19 September 2024

Write a Program to NOFRAME using html

 <!DOCTYPE html><html><head> <title>noframe</title></head><body style="background-color: gray;"><p>This window does not supperted your PC</p></body></html&...

Tuesday, 10 September 2024

Write Program to Clickable Dropdown menu using html

 <!DOCTYPE html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><style>.dropbtn {  background-color: #3498DB;  color: white;  padding: 16px;  font-size: 16px;  border: none;  cursor: pointer;}.dropbtn:hover, .dropbtn:focus {  background-color: #2980B9;}.dropdown {  position: relative;  display: inline-block;}.dropdown-content {  display:...

Write a program to Select Option using html

 <!DOCTYPE html><html><head><title>Select Option Program</title></head><body><h1>Select Option Program</h1>Select Your Language:<select><option>English</option><option>Hindi</option><option>Marathi</option></select><br><button>Click Me<button></body></html&...

Write a program Image using html

HTML Images SyntaxThe HTML <img> tag is used to embed an image in a web page.Images are not technically inserted into a web page; images are linked to web pages. The <img> tag creates a holding space for the referenced image.The <img> tag is empty, it contains attributes only, and does not have a closing tag.The <img> tag has two required attributes:src - Specifies the path to the...

Write a program to Select File using html

 <!DOCTYPE html><html><body><h1>Select File</h1>Select Your File: <input type="file"></body></html&...

Write a program to Video Tag using html

 <!DOCTYPE html><html><body><h1>The video element</h1><video width="320" height="240" controls>  <source src="movie.mp4" type="video/mp4">  <source src="movie.ogg" type="video/ogg">  Your browser does not support the video tag.</video></body></html&...

Write a program to Frame

<html><head>   <title>HTML Frames</title></head><frameset cols="25%,50%,25%">   <frame name="left" src="/html/top_frame.htm" />   <frame name="center" src="/html/main_frame.htm" />   <frame name="right" src="/html/bottom_frame.htm" />   <noframes>      <body>         Your browser does not support...

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&...

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...