Spaces:
Running
Running
File size: 33,987 Bytes
1885808 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>History of MIT | Massachusetts Institute of Technology</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap');
:root {
--mit-red: #A31F34;
--mit-dark-gray: #333333;
--mit-light-gray: #f5f5f5;
}
body {
font-family: 'Open Sans', sans-serif;
color: var(--mit-dark-gray);
}
.mit-serif {
font-family: 'Libre Baskerville', serif;
}
.mit-red-bg {
background-color: var(--mit-red);
}
.mit-red-text {
color: var(--mit-red);
}
.mit-dark-gray-bg {
background-color: var(--mit-dark-gray);
}
.mit-light-gray-bg {
background-color: var(--mit-light-gray);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 1.5rem;
top: 3.5rem;
bottom: -2rem;
width: 2px;
background-color: var(--mit-red);
}
.dropdown:hover .dropdown-menu {
display: block;
}
.search-box {
transition: all 0.3s ease;
}
.search-box:focus-within {
width: 300px;
}
@media (max-width: 768px) {
.search-box:focus-within {
width: 200px;
}
}
.hamburger-menu {
transition: all 0.3s ease;
}
.hamburger-menu.active {
transform: rotate(90deg);
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
max-height: 1000px;
}
.breadcrumb a:hover {
text-decoration: underline;
}
</style>
</head>
<body class="bg-white">
<!-- Top Announcement Bar -->
<div class="mit-red-bg text-white text-center py-2 px-4 text-sm">
<p>MIT announces 2023-2024 tuition and financial aid. <a href="#" class="font-bold underline">Learn more</a></p>
</div>
<!-- Main Header -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4">
<!-- Top Header -->
<div class="flex justify-between items-center py-4 border-b">
<!-- MIT Logo -->
<div class="flex items-center">
<a href="index.html" class="mit-serif text-2xl font-bold mit-red-text">MASSACHUSETTS INSTITUTE OF TECHNOLOGY</a>
</div>
<!-- Right Side Items -->
<div class="flex items-center space-x-6">
<!-- Search Box -->
<div class="search-box relative w-40 hidden md:block">
<input type="text" placeholder="Search MIT..." class="w-full border rounded-full py-2 px-4 pl-10 focus:outline-none focus:ring-2 focus:ring-red-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
<!-- Quick Links -->
<div class="hidden lg:flex space-x-4">
<a href="#" class="text-sm font-medium hover:underline">Give</a>
<a href="#" class="text-sm font-medium hover:underline">Visit</a>
<a href="#" class="text-sm font-medium hover:underline">Apply</a>
</div>
<!-- Mobile Menu Button -->
<button id="mobile-menu-button" class="lg:hidden hamburger-menu">
<i class="fas fa-bars text-2xl mit-red-text"></i>
</button>
</div>
</div>
<!-- Main Navigation -->
<nav class="hidden lg:block">
<ul class="flex space-x-8 py-4">
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">About MIT <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="history.html" class="block px-4 py-2 hover:bg-gray-100">History</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Leadership</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Facts & Figures</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">Academics <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Schools & Departments</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Undergraduate</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Graduate</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">Research <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Research Areas</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Labs & Centers</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Innovation</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">Admissions <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Undergraduate</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Graduate</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Financial Aid</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">Campus Life <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Housing</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Dining</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Activities</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="font-medium hover:mit-red-text">News <i class="fas fa-chevron-down text-xs"></i></a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded mt-2 w-48 py-2">
<a href="#" class="block px-4 py-2 hover:bg-gray-100">MIT News</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Events</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-100">Press</a>
</div>
</li>
</ul>
</nav>
<!-- Mobile Navigation -->
<div id="mobile-menu" class="mobile-menu lg:hidden">
<div class="search-box relative w-full mb-4">
<input type="text" placeholder="Search MIT..." class="w-full border rounded-full py-2 px-4 pl-10 focus:outline-none focus:ring-2 focus:ring-red-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
<ul class="space-y-2 pb-4">
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">About MIT</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="history.html" class="block py-1 hover:mit-red-text">History</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Leadership</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Facts & Figures</a></li>
</ul>
</li>
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">Academics</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="#" class="block py-1 hover:mit-red-text">Schools & Departments</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Undergraduate</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Graduate</a></li>
</ul>
</li>
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">Research</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="#" class="block py-1 hover:mit-red-text">Research Areas</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Labs & Centers</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Innovation</a></li>
</ul>
</li>
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">Admissions</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="#" class="block py-1 hover:mit-red-text">Undergraduate</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Graduate</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Financial Aid</a></li>
</ul>
</li>
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">Campus Life</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="#" class="block py-1 hover:mit-red-text">Housing</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Dining</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Activities</a></li>
</ul>
</li>
<li>
<a href="#" class="block py-2 font-medium hover:mit-red-text">News</a>
<ul class="pl-4 space-y-1 mt-1">
<li><a href="#" class="block py-1 hover:mit-red-text">MIT News</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Events</a></li>
<li><a href="#" class="block py-1 hover:mit-red-text">Press</a></li>
</ul>
</li>
<li class="pt-4 border-t">
<div class="flex space-x-4">
<a href="#" class="text-sm font-medium hover:underline">Give</a>
<a href="#" class="text-sm font-medium hover:underline">Visit</a>
<a href="#" class="text-sm font-medium hover:underline">Apply</a>
</div>
</li>
</ul>
</div>
</div>
</header>
<!-- Breadcrumb Navigation -->
<div class="container mx-auto px-4 py-4 text-sm text-gray-600">
<div class="breadcrumb flex space-x-2">
<a href="index.html" class="hover:text-gray-800">Home</a>
<span>/</span>
<a href="#" class="hover:text-gray-800">About MIT</a>
<span>/</span>
<span class="text-gray-800 font-medium">History</span>
</div>
</div>
<!-- Hero Section -->
<section class="relative">
<div class="w-full h-96 bg-cover bg-center" style="background-image: url('https://via.placeholder.com/1920x600')">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center">
<div class="container mx-auto px-4 text-white">
<h1 class="mit-serif text-4xl md:text-5xl font-bold mb-4">History of MIT</h1>
<p class="text-xl max-w-2xl mb-6">From our founding in 1861 to today, MIT has been at the forefront of innovation and education.</p>
</div>
</div>
</div>
</section>
<!-- Main Content Section -->
<section class="py-16">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row gap-12">
<!-- Main Content -->
<div class="lg:w-2/3">
<h2 class="mit-serif text-3xl font-bold mb-6">Our Founding and Early Years</h2>
<p class="text-lg mb-6">The Massachusetts Institute of Technology was founded in 1861 by William Barton Rogers, a visionary scientist who believed in "the necessity of basing the professional and practical work of the School upon the previous thorough scientific training."</p>
<div class="flex flex-col md:flex-row gap-6 mb-8">
<div class="md:w-1/2">
<img src="https://via.placeholder.com/600x400" alt="Founding of MIT" class="w-full rounded-lg shadow-md mb-4">
<p class="text-sm text-gray-600">William Barton Rogers, founder of MIT</p>
</div>
<div class="md:w-1/2">
<p class="mb-4">Despite being chartered in 1861, MIT didn't open until 1865 due to the Civil War. The first classes were held in rented space in Boston's Back Bay.</p>
<p class="mb-4">MIT's early curriculum emphasized laboratory instruction, field work, and the application of scientific knowledge to practical problems—a radical departure from the classical education of the time.</p>
<p>The Institute moved to its current location in Cambridge in 1916, marking the beginning of a new era of growth and innovation.</p>
</div>
</div>
<h2 class="mit-serif text-3xl font-bold mb-6 mt-12">Timeline of Key Events</h2>
<div class="space-y-8 relative">
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">1861</div>
<h3 class="text-xl font-bold mb-2">MIT is Chartered</h3>
<p class="text-gray-700">The Commonwealth of Massachusetts approves MIT's charter, which is signed by Governor John Albion Andrew.</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">1865</div>
<h3 class="text-xl font-bold mb-2">First Classes Begin</h3>
<p class="text-gray-700">MIT opens its doors to 15 students in rented space in Boston's Mercantile Building.</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">1916</div>
<h3 class="text-xl font-bold mb-2">Move to Cambridge</h3>
<p class="text-gray-700">MIT moves across the Charles River to its new Cambridge campus designed by architect William Welles Bosworth.</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">1930</div>
<h3 class="text-xl font-bold mb-2">MIT Radiation Laboratory</h3>
<p class="text-gray-700">During World War II, MIT becomes a center for radar research, developing technology crucial to Allied victory.</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">1961</div>
<h3 class="text-xl font-bold mb-2">Centennial Celebration</h3>
<p class="text-gray-700">MIT marks its 100th anniversary with a year-long celebration and the dedication of new buildings.</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-16">
<div class="absolute left-0 top-0 mit-red-bg text-white rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl">2001</div>
<h3 class="text-xl font-bold mb-2">OpenCourseWare Launches</h3>
<p class="text-gray-700">MIT revolutionizes education by making course materials freely available online, benefiting learners worldwide.</p>
</div>
</div>
<h2 class="mit-serif text-3xl font-bold mb-6 mt-12">MIT's Educational Philosophy</h2>
<p class="text-lg mb-6">From its founding, MIT has embraced a philosophy of "learning by doing" that combines rigorous academic study with hands-on experience. This approach, known as the "MIT Method," has shaped generations of innovators and problem-solvers.</p>
<div class="bg-gray-50 p-6 rounded-lg mb-8">
<blockquote class="mit-serif text-xl italic mb-4">
"The true and only practicable object of a polytechnic school is, as I conceive, the teaching, not of the minute details and manipulations of the arts, which can be done only in the workshop, but the inculcation of those scientific principles which form the basis and explanation of them."
</blockquote>
<p class="text-right font-medium">— William Barton Rogers, 1861</p>
</div>
<h2 class="mit-serif text-3xl font-bold mb-6">Modern Era and Global Impact</h2>
<p class="text-lg mb-6">Today, MIT continues to push boundaries in science, technology, and education. With over 1,000 faculty members, 11,000 students, and a global network of alumni, MIT's impact extends far beyond its Cambridge campus.</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<h3 class="text-xl font-bold mb-3 mit-red-text">Research Leadership</h3>
<p class="mb-4">MIT researchers have been awarded 98 Nobel Prizes, with groundbreaking work in physics, chemistry, medicine, and economics.</p>
<p>From developing the first synthetic penicillin to pioneering artificial intelligence, MIT continues to be at the forefront of discovery.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<h3 class="text-xl font-bold mb-3 mit-red-text">Entrepreneurial Spirit</h3>
<p class="mb-4">MIT alumni have founded over 30,000 active companies, creating millions of jobs and generating nearly $2 trillion in annual revenue.</p>
<p>Companies like Intel, Dropbox, and Bose trace their roots to MIT's entrepreneurial ecosystem.</p>
</div>
</div>
</div>
<!-- Sidebar -->
<div class="lg:w-1/3">
<div class="bg-gray-50 p-6 rounded-lg sticky top-8">
<h3 class="mit-serif text-xl font-bold mb-4 border-b pb-2">Quick Facts</h3>
<ul class="space-y-4">
<li>
<h4 class="font-bold">Founded</h4>
<p>April 10, 1861</p>
</li>
<li>
<h4 class="font-bold">Founder</h4>
<p>William Barton Rogers</p>
</li>
<li>
<h4 class="font-bold">First Location</h4>
<p>Boston's Back Bay (1865-1916)</p>
</li>
<li>
<h4 class="font-bold">Current Campus</h4>
<p>Cambridge, MA (since 1916)</p>
</li>
<li>
<h4 class="font-bold">Motto</h4>
<p class="mit-serif">"Mens et Manus" (Mind and Hand)</p>
</li>
</ul>
<h3 class="mit-serif text-xl font-bold mb-4 mt-8 border-b pb-2">Related Links</h3>
<ul class="space-y-3">
<li><a href="#" class="text-blue-600 hover:underline">MIT Archives</a></li>
<li><a href="#" class="text-blue-600 hover:underline">MIT Museum</a></li>
<li><a href="#" class="text-blue-600 hover:underline">Institute Timeline</a></li>
<li><a href="#" class="text-blue-600 hover:underline">Notable Alumni</a></li>
<li><a href="#" class="text-blue-600 hover:underline">Nobel Laureates</a></li>
</ul>
<div class="mt-8">
<a href="#" class="inline-block mit-red-bg hover:bg-red-800 text-white font-bold py-3 px-6 rounded transition duration-300 w-full text-center">Visit the MIT Museum</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Historical Images Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="mit-serif text-3xl font-bold mb-8 text-center">Historical Images</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="group relative overflow-hidden rounded-lg shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/400x300" alt="Early MIT campus" class="w-full h-64 object-cover transform group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-end p-4 opacity-0 group-hover:opacity-100 transition duration-300">
<p class="text-white">Original MIT building in Boston, 1870</p>
</div>
</div>
<div class="group relative overflow-hidden rounded-lg shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/400x300" alt="Construction of Cambridge campus" class="w-full h-64 object-cover transform group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-end p-4 opacity-0 group-hover:opacity-100 transition duration-300">
<p class="text-white">Construction of Cambridge campus, 1915</p>
</div>
</div>
<div class="group relative overflow-hidden rounded-lg shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/400x300" alt="Radar research" class="w-full h-64 object-cover transform group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-end p-4 opacity-0 group-hover:opacity-100 transition duration-300">
<p class="text-white">Radar research during WWII, 1943</p>
</div>
</div>
<div class="group relative overflow-hidden rounded-lg shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/400x300" alt="Student protest" class="w-full h-64 object-cover transform group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-end p-4 opacity-0 group-hover:opacity-100 transition duration-300">
<p class="text-white">Student activism, 1969</p>
</div>
</div>
</div>
<div class="text-center mt-8">
<a href="#" class="inline-block mit-red-bg hover:bg-red-800 text-white font-bold py-3 px-6 rounded transition duration-300">View More Historical Photos</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="mit-dark-gray-bg text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<h3 class="mit-serif text-xl font-bold mb-4">About MIT</h3>
<ul class="space-y-2">
<li><a href="history.html" class="hover:underline">History</a></li>
<li><a href="#" class="hover:underline">Leadership</a></li>
<li><a href="#" class="hover:underline">Facts & Figures</a></li>
<li><a href="#" class="hover:underline">Map & Directions</a></li>
<li><a href="#" class="hover:underline">Jobs at MIT</a></li>
</ul>
</div>
<div>
<h3 class="mit-serif text-xl font-bold mb-4">Academics</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">Schools & Departments</a></li>
<li><a href="#" class="hover:underline">Undergraduate</a></li>
<li><a href="#" class="hover:underline">Graduate</a></li>
<li><a href="#" class="hover:underline">Online Learning</a></li>
<li><a href="#" class="hover:underline">Academic Calendar</a></li>
</ul>
</div>
<div>
<h3 class="mit-serif text-xl font-bold mb-4">Admissions</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">Undergraduate</a></li>
<li><a href="#" class="hover:underline">Graduate</a></li>
<li><a href="#" class="hover:underline">Financial Aid</a></li>
<li><a href="#" class="hover:underline">Tuition & Costs</a></li>
<li><a href="#" class="hover:underline">Visit MIT</a></li>
</ul>
</div>
<div>
<h3 class="mit-serif text-xl font-bold mb-4">Connect</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">Contact</a></li>
<li><a href="#" class="hover:underline">Give to MIT</a></li>
<li><a href="#" class="hover:underline">Alumni</a></li>
<li><a href="#" class="hover:underline">Media</a></li>
<li><a href="#" class="hover:underline">Emergency Info</a></li>
</ul>
<div class="mt-6">
<h4 class="font-bold mb-2">Follow MIT</h4>
<div class="flex space-x-4">
<a href="#" class="text-white hover:text-gray-300"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-white hover:text-gray-300"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-white hover:text-gray-300"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-white hover:text-gray-300"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-white hover:text-gray-300"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<a href="index.html" class="mit-serif text-xl font-bold">MASSACHUSETTS INSTITUTE OF TECHNOLOGY</a>
</div>
<div class="text-sm text-gray-400">
© 2023 Massachusetts Institute of Technology. All rights reserved.
</div>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenuButton.classList.toggle('active');
mobileMenu.classList.toggle('open');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
// Add shadow to header on scroll
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 10) {
header.classList.add('shadow-md');
} else {
header.classList.remove('shadow-md');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=jkind/mit-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |