Posts

Showing posts from March, 2025

2,4

2. countries  <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>World Countries</title>     <style>         body {             font-family: Arial, sans-serif;             line-height: 1.6;         }         a {             color: blue;             text-decoration: none;             font-weight: bold;         }         a:hover {             text-decoration: underline;         }     </style> </head> <body>     <h1>Welcome to the World of Countries</h1> ...

college web

  1.college website <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>ABC College</title>     <style>         body {             font-family: Arial, sans-serif;             margin: 0;             padding: 0;         }         header {             background-color: #4CAF50;             color: white;             padding: 15px 0;             text-align: center;         }         nav {             background-color: #333;             ov...

js

  Registration form js <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Inter-Collegiate Function Registration</title>     <style>         body {             font-family: Arial, sans-serif;             margin: 20px;         }         h1 {             text-align: center;         }         form {             width: 50%;             margin: auto;             background-color: #f9f9f9;             padding: 20px;             border-radius: 10px;     ...

LT3,5BIO

3. list  and table <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Lists and Table Example</title> </head> <body>     <!-- i) Display Text with Bullets / Numbers - Using Lists -->     <h1>Lists</h1>     <!-- Unordered List (Bullets) -->     <h2>Unordered List</h2>     <ul>         <li>Item 1</li>         <li>Item 2</li>         <li>Item 3</li>         <li>Item 4</li>     </ul>     <!-- Ordered List (Numbers) -->     <h2>Ordered List</h2>     <ol>         <li>First Item</li>  ...

xml

 students.xml <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="students.xsl"?> <students>   <student>     <name>Aswath S</name>     <age>21</age>     <dob>09/08/2000</dob>     <mobile>912345674</mobile>     <address>CBE</address>   </student>   <student>     <name>Surya M</name>     <age>21</age>     <dob>04/08/2000</dob>     <mobile>998765439</mobile>     <address>CBE</address>   </student> </students> students.xsl <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">   <xsl:template match="/">     <html>       <body>         ...