Skip to main content

 Experiment No.-1

Objective: Write HTML Program for designing your institute website. Display department information of your institute on the website.


<!DOCTYPE html>

<html>

<head>

<title>

            College Department Details

</title>

</head>

<body bgcolor="lightgray">

<h1 align="center" style="color: black;">GNIOT, Greater Noida</h1>

<h2 align="center" style="color: black;">NAAC A+</h2>

<h3 align="center" style="color: black;">Afliated to Abdul Kalam Technical University</h3>

<hr> 

<h2 align="center" style="color: black;">About College </h2>

<p style="font-family:courier";>Greater Noida Institute of Technology (GNIOT) is one of the premier Institutions in the field of Technical and Management Education. It has been formed by Shri Ram Educational Trust, Noida on no profit basis with a firm determination and commitment to foster a holistic approach towards the development of Engineering and Management Education. The Trust was formed in the year 2000 and the Institute was established in the year 2001. The Trust has had a meteoric rise, and on date, has established a chain of educational institutions covering the fields of engineering and management leading towards Graduate and Post Graduate degrees. Plans are also afoot to introduce Doctoral Programmes in the very near future. It has been approved by AICTE, Ministry of HRD, Goverment of India and affiliated to Dr. A.P.J. Abdul Kalam Technical University, Lucknow The Institute distinguishes itself from other colleges and Institutes due to its holistic approach and unique foresighted planning in providing technical and professional education with the state-of-the-art techniques. The main objective of an Institute is to generate a bunch of highly creative professionals, who can contribute not only in the Human Resource Development but also in the Nation Building Exercise.

</p>

<h2><b>Courses Offered</b></h2>

<ul>

<li>B.Tech CSE-IOT</li> 

<li>B.Tech CSE-Cyber Security</li>

<li>B.Tech Computer Science </li>

<li>M.Tech Computer Science </li>

<li>B.Tech CSE-DS</li>

<li>B.Tech CSE-AI</li>

</ul>

<h2>Department of CSE-IoT and Cyber Security</h2>

<p style="font-family:courier">To educate the young

             minds with the ability to manage real world problem with the latest technology, 

             to inculcate professional behaviors, strong ethical values, innovative research capability and leadership ability.

              Help the students to explore the depths of computer science, exalt in them and at the same time join hands with the other branches of science to turn something virtual into real and vice versa.</p>

<h2>Faculties of CSE-IoT</h2>

<ol>

<li>Dr. Indradeep</li>

<li>Dr. Shipra</li>

<li>Mr. Shiv Veer Singh</li>

<li>Mr. Jai Prakash Bhati</li>

</ol>

<h3>Condact us </h3>

<p>Phone Number:+91-9811460278</p>

<p>Email:

feedback@gniot.net.in</p>

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