Skip to main content

 <!DOCTYPE html>

<html>

<head>

    <title>Experiment No:2</title>

</head>

<body>

    <h3>Experiment No:2 Objective: - Write an HTML program to design an entry form of student details.</h3>

    <h2><u>STUDENT REGISTRATION FORM</u></h2>


    <form>

        <!-- Username -->

        <label>USERNAME:</label>

        <input type="text" name="username"><br><br>


        <!-- Password -->

        <label>PASSWORD:</label>

        <input type="password" name="password"><br><br>


        <!-- Address -->

        <label>ADDRESS:</label>

        <input type="text" name="address" placeholder="address"><br><br>


        <!-- Email -->

        <label>EMAIL:</label>

        <input type="email" name="email" placeholder="email"><br><br>


        <!-- Phone -->

        <label>PHONE:</label>

        <input type="tel" name="phone" placeholder="phone"><br><br>


        <!-- Date of Birth -->

        <label>DATE OF BIRTH:</label>

        <input type="date" name="dob"><br><br>


        <!-- Gender -->

        <label>GENDER:</label>

        <input type="radio" name="gender" value="male"> male

        <input type="radio" name="gender" value="female"> female <br><br>


        <!-- Category -->

        <label>CATEGORY:</label>

        <input type="checkbox" name="cat" value="SC"> SC

        <input type="checkbox" name="cat" value="ST"> ST

        <input type="checkbox" name="cat" value="OBC"> OBC

        <input type="checkbox" name="cat" value="GENERAL"> GENERAL <br><br>


        <!-- Course -->

        <label>SELECT YOUR COURSE:</label>

        <select name="course">

            <option value="web technology">web technology</option>

            <option value="dbms">DBMS</option>

            <option value="java">Java</option>

            <option value="python">Python</option>

            <option value="c++">C++</option>

        </select>

    </form>

</body>

</html>

Comments

Popular posts from this blog

Here Is The Future Of Bitcion : TechOrbitAI

🌐 Upcoming Bitcoin News and Predictions: What Lies Ahead for the King of Crypto? 🚀 Introduction: The Bitcoin Roller Coaster Bitcoin, the world’s first and most popular cryptocurrency, has continued to evolve from a fringe digital asset to a household name in global finance. As we head deeper into 2025, the anticipation around upcoming Bitcoin news and price predictions is at an all-time high. With increasing institutional interest, regulatory changes, macroeconomic shifts, and technological upgrades, Bitcoin is at a critical juncture. This article explores the most important upcoming developments, expert forecasts, and what they mean for investors, traders, and the global economy. 📊 Bitcoin’s 2024 Recap: Setting the Stage Before diving into the predictions, it's essential to understand the context. 2024 was a pivotal year for Bitcoin: April 2024 Halving Event: Bitcoin underwent its fourth halving, reducing mining rewards from 6.25 to 3.125 BTC. Historically, halving e...
 Got it 👍 You want the exact SQL commands that you can type and run in your SQL editor (like Oracle SQL, MySQL, or PostgreSQL). I’ll give you both DDL and DML commands properly written. --- 🔹 Data Definition Language (DDL) 1. Create a table CREATE TABLE employees (     emp_id NUMBER PRIMARY KEY,     name VARCHAR2(50),     salary NUMBER(10, 2),     hire_date DATE ); 2. Alter table 👉 Add a new column: ALTER TABLE employees ADD (department_id NUMBER); 👉 Modify column datatype: ALTER TABLE employees MODIFY (name VARCHAR2(100)); 3. Drop table DROP TABLE employees; 4. Truncate table TRUNCATE TABLE employees; 5. Rename table RENAME employees TO staff; --- 🔹 Data Manipulation Language (DML) 1. Insert data INSERT INTO employees (emp_id, name, salary, hire_date) VALUES (101, 'Alice Johnson', 55000, TO_DATE('2022-01-15', 'YYYY-MM-DD')); 2. Select data SELECT name, salary FROM employees WHERE salary > 50000; 3. Update data UPDATE employees SET sa...