📁 File Manager
🏠 /
/
home
/
u857492117
/
domains
/
mangaldaicollege.org
/
public_html
Dosya Düzenle: indexhd.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Mangaldai College</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- AOS Animation CSS --> <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> <style> /* RESET */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; } a { text-decoration: none; color: white; } html { scroll-behavior: smooth; } /* Fixed Header */ header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; } .college-topbar, .college-subbar { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); } body { margin: 0; padding-top: 115px; background: #f8f9fa; } /* Topbar */ .college-topbar { background: #131921; color: white; display: flex; align-items: center; justify-content: space-between; padding: 6px 12px; gap: 15px; } ..college-location, .college-account, .college-returns, .college-lang, .college-cart { cursor: pointer; padding: 6px 8px; display: flex; flex-direction: column; justify-content: center; border: 1px solid transparent; /* reserve border */ border-radius: 3px; } .college-location:hover, .college-account:hover, .college-returns:hover, .college-lang:hover, .college-cart:hover { border-color: white; /* only change the color on hover */ } .small { font-size: 12px; color: #ddd; } .bold { font-size: 14px; font-weight: bold; } .college-search { display: flex; flex: 1; max-width: 650px; height: 40px; } .college-search select { padding: 0 6px; border: none; border-radius: 4px 0 0 4px; background: #f3f3f3; font-size: 14px; } .college-search input { flex: 1; padding: 0 10px; border: none; font-size: 15px; } .college-search button { background: #febd69; border: none; padding: 0 15px; font-size: 18px; border-radius: 0 4px 4px 0; cursor: pointer; } .college-search button:hover { background: #f3a847; } /* Subbar & Dropdown */ .college-subbar { background: #232f3e; color: white; display: flex; align-items: center; gap: 20px; padding: 8px 15px; font-size: 14px; } .college-subbar a, .college-subbar .all-btn { cursor: pointer; padding: 6px 8px; } ..college-subbar a:hover, .college-subbar .all-btn:hover { background: rgba(255,255,255,0.2); border-radius: 3px; } .nav-menu { list-style: none; display: flex; gap: 20px; position: relative; } .menu-has-children { position: relative; } .menu-has-children .dropdown { display: none; position: absolute; background: #232f3e; top: 100%; left: 0; min-width: 200px; z-index: 2000; flex-direction: column; box-shadow: 0 4px 18px rgba(0,0,0,0.18); padding: 0; } .menu-has-children:hover .dropdown { display: flex; } .dropdown li { border-top: 1px solid #444; width: 100%; display: block; } .dropdown a { display: block; padding: 10px 14px; color: white; width: 100%; box-sizing: border-box; } .dropdown a:hover { background: #37475a; } /* Sidebar */ .college-sidebar { height: 100%; width: 0; position: fixed; top: 0; left: 0; background-color: #fff; color: #111; overflow-x: hidden; transition: 0.4s; padding-top: 60px; z-index: 2000; } .college-sidebar a { padding: 12px 20px; text-decoration: none; font-size: 18px; color: #111; display: block; } .college-sidebar a:hover { background: #f3f3f3; } .college-sidebar .closebtn { position: absolute; top: 15px; right: 25px; font-size: 28px; color: #111; } /* Hero Section */ .hero-video { position: relative; height: 80vh; width: 100%; overflow: hidden; } .hero-video video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; z-index: -1; } .hero-overlay { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; padding: 20px; } .hero-overlay h1 { font-size: 48px; margin-bottom: 15px; } .hero-overlay p { font-size: 20px; margin-bottom: 25px; } .hero-btn { padding: 12px 25px; background: #febd69; color: #111; font-size: 16px; font-weight: bold; border-radius: 5px; transition: 0.3s; } .hero-btn:hover { background: #f3a847; } /* Principal Section */ .principal-section { padding: 70px 20px; display: flex; justify-content: center; background: linear-gradient(135deg, #f8f9fa, #eef1f5); } .principal-card { display: flex; align-items: center; gap: 30px; max-width: 1100px; background: #fff; border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); padding: 40px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .principal-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); } .principal-image { flex: 0 0 250px; display: flex; justify-content: center; } .principal-image img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; border: 6px solid #232f3e; box-shadow: 0 4px 12px rgba(0,0,0,0.15); } .principal-message { flex: 1; } .principal-message h2 { font-size: 28px; color: #131921; margin-bottom: 18px; font-weight: 700; } .principal-message p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 14px; } .principal-message .highlight { font-size: 18px; font-style: italic; color: #232f3e; border-left: 4px solid #ff9900; padding-left: 12px; margin-bottom: 20px; } .principal-name { margin-top: 25px; font-weight: bold; color: #232f3e; font-size: 17px; } .principal-name span { font-weight: normal; color: #666; font-size: 14px; display: block; margin-top: 4px; } /* Sections */ section { padding: 60px 20px; max-width: 1100px; margin: auto; background: #fff; margin-bottom: 40px; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.07); } section#home, .hero-video { padding: 0; margin-bottom: 0; border-radius: 0; box-shadow: none; background: none; max-width: 100%; } /* Responsive */ @media (max-width: 991px) { .college-lang, .college-returns { display: none; } .college-search { max-width: 100%; } } @media (max-width: 900px) { .principal-card { flex-direction: column; text-align: center; padding: 25px; } .principal-image { margin-bottom: 20px; } .principal-image img { width: 180px; height: 180px; } .principal-message h2 { font-size: 24px; } } @media (max-width: 768px) { .nav-menu { display: none; } .college-location { display: none; } .college-search select { display: none; } .hero-overlay h1 { font-size: 28px; } .hero-overlay p { font-size: 16px; } } </style> </head> <body> <header> <div class="college-topbar"> <div class="college-location"> <img src="img/LogoA.png" alt="" title="" width="65%"> </div> <div class="college-search"> <select> <option>All</option> <option>Departments</option> <option>Courses</option> <option>Events</option> </select> <input type="text" placeholder="Search Mangaldai College"> <button>🔍</button> </div> <div class="college-lang" id="langToggle">🌐 EN</div> <div class="college-account"> <span class="small">Hello, Guest</span> <span class="bold">Login / Register</span> </div> <div class="college-returns"> <span class="small">Quick</span> <span class="bold">Links</span> </div> <div class="college-cart"> 🎓 <span class="bold">Library</span> </div> </div> <div class="college-subbar"> <div class="all-btn" onclick="openSidebar()">☰ All</div> <ul class="nav-menu"> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li class="menu-has-children"> <a href="#administration">Administration ▾</a> <ul class="dropdown"> <li><a href="#principal">Office of the Principal</a></li> <li><a href="#governingbody">Governing Body</a></li> <li><a href="#organogram">Organogram</a></li> <li><a href="#rules">Rules & Regulations</a></li> <li><a href="#handbook">Handbook of Stakeholders</a></li> <li><a href="#policy">Procedure/Policy</a></li> <li><a href="#rti">RTI</a></li> </ul> </li> <li class="menu-has-children"> <a href="#academics">Academics ▾</a> <ul class="dropdown"> <li><a href="#departments">Departments</a></li> <li><a href="#faculties">Faculties</a></li> <li><a href="#courses">Courses</a></li> </ul> </li> <li><a href="#events">Events</a></li> <li><a href="#alumni">Alumni</a></li> <li><a href="#rdc">RDC</a></li> <li><a href="#iqac">IQAC</a></li> <li><a href="#contact">Contact</a></li> </ul> </div> </header> <div id="college-sidebar" class="college-sidebar"> <a href="javascript:void(0)" class="closebtn" onclick="closeSidebar()">×</a> <a href="#departments">Computer Science</a> <a href="#departments">Physics</a> <a href="#departments">Chemistry</a> <a href="#departments">Mathematics</a> <a href="#departments">Zoology</a> <a href="#departments">Botany</a> <a href="#arts">Arts</a> <a href="#commerce">Commerce</a> <a href="#iqac">IQAC</a> <a href="#rdc">RDC</a> </div> <!-- Hero Section --> <section id="home" class="hero-video"> <video autoplay muted loop id="bgVideo"> <source src="VDO.mp4" type="video/mp4"> Your browser does not support HTML5 video. </video> <div class="hero-overlay"> <h1>Welcome to Mangaldai College</h1> <p>Empowering Education • Inspiring Innovation • Shaping Futures</p> <a href="#about" class="hero-btn">Learn More</a> </div> </section> <!-- About Section --> <section id="about"> <h2>About Mangaldai College</h2> <p> Mangaldai College is a premier institution dedicated to academic excellence and holistic development. Since its founding, it has fostered a vibrant atmosphere for learning and innovation. </p> </section> <!-- Principal Message Section --> <section id="principal" class="principal-section"> <div class="principal-card" data-aos="fade-up"> <div class="principal-image" data-aos="fade-right"> <img src="https://mangaldaicollege.org/img/princyImg.jpeg" alt="Principal Photo" style="box-shadow: 0 6px 15px rgb(0 0 0 / 91%);"> </div> <div class="principal-message" data-aos="fade-left"> <h2>Message from the Principal</h2> <p class="highlight" data-aos="zoom-in"> "At <strong>Mangaldai College</strong>, we are committed to nurturing not only academic excellence but also values of leadership, discipline, and innovation." </p> <p data-aos="fade-up"> Since its inception, the college has stood as a beacon of knowledge and growth. We provide a vibrant learning environment that empowers students to explore, question, and excel in every walk of life. </p> <p data-aos="fade-up" data-aos-delay="200"> I invite all students to take part in academics, research, and co-curricular activities with enthusiasm, shaping themselves into responsible citizens and professionals of tomorrow. </p> <p class="principal-name" data-aos="fade-up" data-aos-delay="400"> – Dr. Kamala Kanta Borah <br><span>Principal, Mangaldai College</span> </p> </div> </div> </section> <!-- Administration Sections --> <section id="governingbody"><h2>Governing Body</h2><p>Details about the governing body go here.</p></section> <section id="organogram"><h2>Organogram</h2><p>Organogram diagram and description go here.</p></section> <section id="rules"><h2>Rules & Regulations</h2><p>Rules and regulations information.</p></section> <section id="handbook"><h2>Handbook of Stakeholders</h2><p>Handbook content here.</p></section> <section id="policy"><h2>Procedure/Policy</h2><p>Policies and procedures information.</p></section> <section id="rti"><h2>RTI</h2><p>RTI declaration and related info.</p></section> <!-- Academics Section --> <section id="academics"><h2>Academics</h2><p>Overview of academic programs and philosophy.</p></section> <section id="departments"><h2>Departments</h2><ul> <li>Computer Science</li> <li>Physics</li> <li>Chemistry</li> <li>Mathematics</li> <li>Zoology</li> <li>Botany</li> <li>Arts</li> <li>Commerce</li> </ul></section> <section id="faculties"><h2>Faculties</h2><p>Information on college faculties.</p></section> <section id="courses"><h2>Courses</h2><p>List and description of courses available.</p></section> <!-- Events Section --> <section id="events"><h2>Events</h2><p>Upcoming and past events details.</p></section> <!-- Alumni Section --> <section id="alumni"><h2>Alumni</h2><p>Alumni network and resources.</p></section> <!-- RDC Section --> <section id="rdc"><h2>RDC</h2><p>Details about RDC activities and projects.</p></section> <!-- IQAC Section --> <section id="iqac"><h2>IQAC</h2><p>IQAC information and initiatives.</p></section> <!-- Library Section --> <section id="library"><h2>Library</h2><p>Access library resources and information here.</p></section> <!-- Contact Section --> <section id="contact"> <h2>Contact Us</h2> <p> Mangaldai College, Mangaldai, Assam<br> Phone: 01234-567890<br> Email: info@mangaldaicollege.org </p> <form> <label>Name:<br><input type="text" name="name" required></label><br><br> <label>Email:<br><input type="email" name="email" required></label><br><br> <label>Message:<br><textarea name="message" rows="5" required></textarea></label><br><br> <button type="submit">Send</button> </form> </section> <!-- Sidebar Script --> <script> function openSidebar() { document.getElementById("college-sidebar").style.width = "250px"; } function closeSidebar() { document.getElementById("college-sidebar").style.width = "0"; } </script> <!-- AOS Animation JS --> <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> <script> AOS.init({ duration: 1200, once: true }); </script> </body> </html>
💾 Kaydet
İptal