Spaces:
Running
Running
File size: 34,465 Bytes
af553ca |
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 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Development Process Guide</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>
.phase-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.phase-card:hover {
transform: translateY(-5px) rotateX(5deg);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 200px;
background-color: #4f46e5;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.progress-bar {
height: 6px;
transition: width 0.5s ease;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: scale(1.2);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<header class="bg-gradient-to-r from-indigo-600 to-purple-600 text-white shadow-lg">
<div class="container mx-auto px-4 py-8">
<div class="flex justify-between items-center">
<div>
<h1 class="text-4xl font-bold">Web Development Process</h1>
<p class="mt-2 text-lg opacity-90">A comprehensive guide from planning to deployment</p>
</div>
<div class="hidden md:block">
<div class="flex space-x-2">
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">HTML</span>
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">CSS</span>
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">JavaScript</span>
</div>
</div>
</div>
</div>
</header>
<main class="container mx-auto px-4 py-8">
<!-- Progress Tracker -->
<div class="mb-12 bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Your Project Progress</h2>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Planning & Design</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Development Setup</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Backend Development</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Frontend Development</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Testing & Deployment</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
</div>
<button id="updateProgressBtn" class="mt-6 px-6 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition">
Update Progress
</button>
</div>
<!-- Development Phases -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
<!-- Phase 0 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-indigo-100 p-4">
<div class="flex items-center">
<div class="bg-indigo-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">0</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Planning & Design</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Define project requirements and MVP</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Create wireframes and mockups</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Choose technology stack</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Design database schema</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-indigo-100 text-indigo-700 rounded-lg hover:bg-indigo-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 1 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-purple-100 p-4">
<div class="flex items-center">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">1</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Development Setup</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Install development tools</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up version control</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Initialize project structure</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure environment</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-purple-100 text-purple-700 rounded-lg hover:bg-purple-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 2 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-blue-100 p-4">
<div class="flex items-center">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">2</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Backend Development</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up server framework</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Design and implement API</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Connect to database</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Implement authentication</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-blue-100 text-blue-700 rounded-lg hover:bg-blue-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 3 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-green-100 p-4">
<div class="flex items-center">
<div class="bg-green-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">3</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Frontend Development</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up frontend framework</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Develop UI components</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Implement routing</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Connect to backend API</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-green-100 text-green-700 rounded-lg hover:bg-green-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 4 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-yellow-100 p-4">
<div class="flex items-center">
<div class="bg-yellow-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">4</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Testing & Integration</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Write unit tests</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Perform integration testing</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Fix bugs</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Optimize performance</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-yellow-100 text-yellow-700 rounded-lg hover:bg-yellow-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 5 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-red-100 p-4">
<div class="flex items-center">
<div class="bg-red-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">5</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Deployment</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Choose hosting provider</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure production environment</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up CI/CD pipeline</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure domain and SSL</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-red-100 text-red-700 rounded-lg hover:bg-red-200 transition">
View Details
</button>
</div>
</div>
</div>
</div>
<!-- Technology Stack -->
<div class="bg-white rounded-xl shadow-md p-6 mb-12">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Technology Stack Options</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Backend -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-server mr-2 text-indigo-600"></i> Backend
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg" width="32" height="32" alt="Node.js">
</div>
<span class="tooltip-text">Node.js - JavaScript runtime</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" width="32" height="32" alt="Python">
</div>
<span class="tooltip-text">Python - Versatile language</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg" width="32" height="32" alt="Java">
</div>
<span class="tooltip-text">Java - Enterprise solution</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/php/php-original.svg" width="32" height="32" alt="PHP">
</div>
<span class="tooltip-text">PHP - Web-focused language</span>
</div>
</div>
</div>
<!-- Frontend -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-desktop mr-2 text-blue-600"></i> Frontend
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" width="32" height="32" alt="React">
</div>
<span class="tooltip-text">React - Component-based UI</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vuejs/vuejs-original.svg" width="32" height="32" alt="Vue.js">
</div>
<span class="tooltip-text">Vue.js - Progressive framework</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/angularjs/angularjs-original.svg" width="32" height="32" alt="Angular">
</div>
<span class="tooltip-text">Angular - Full-featured framework</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/svelte/svelte-original.svg" width="32" height="32" alt="Svelte">
</div>
<span class="tooltip-text">Svelte - Compiler approach</span>
</div>
</div>
</div>
<!-- Database -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-database mr-2 text-green-600"></i> Database
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" width="32" height="32" alt="PostgreSQL">
</div>
<span class="tooltip-text">PostgreSQL - Powerful SQL database</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original.svg" width="32" height="32" alt="MySQL">
</div>
<span class="tooltip-text">MySQL - Popular SQL database</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-original.svg" width="32" height="32" alt="MongoDB">
</div>
<span class="tooltip-text">MongoDB - NoSQL document store</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/redis/redis-original.svg" width="32" height="32" alt="Redis">
</div>
<span class="tooltip-text">Redis - In-memory data store</span>
</div>
</div>
</div>
</div>
</div>
<!-- Checklist -->
<div class="bg-white rounded-xl shadow-md p-6 mb-12">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Development Checklist</h2>
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<h3 class="text-lg font-medium text-gray-800 mb-3">Planning Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Define project requirements</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Create wireframes</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Choose technology stack</span>
</label>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<h3 class="text-lg font-medium text-gray-800 mb-3">Development Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Set up development environment</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Implement backend API</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Develop frontend components</span>
</label>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-3">Deployment Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Configure production environment</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Set up CI/CD pipeline</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Monitor application performance</span>
</label>
</div>
</div>
</div>
</div>
<!-- Resources -->
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Helpful Resources</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<a href="https://developer.mozilla.org" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-globe text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">MDN Web Docs</h3>
</div>
<p class="text-gray-600">Comprehensive documentation for HTML, CSS, and JavaScript.</p>
</div>
</a>
<a href="https://tailwindcss.com" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-paint-brush text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">Tailwind CSS</h3>
</div>
<p class="text-gray-600">Utility-first CSS framework for rapid UI development.</p>
</div>
</a>
<a href="https://dev.to" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-newspaper text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">DEV Community</h3>
</div>
<p class="text-gray-600">Community of developers sharing knowledge and experiences.</p>
</div>
</a>
</div>
</div>
</main>
<footer class="bg-gray-800 text-white py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h3 class="text-xl font-bold">Web Development Process</h3>
<p class="text-gray-400 mt-1">A guide to building modern web applications</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
<p>© 2023 Web Development Guide. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Update progress bars
document.getElementById('updateProgressBtn').addEventListener('click', function() {
const progressBars = document.querySelectorAll('.progress-bar');
const progressTexts = document.querySelectorAll('.text-sm.font-medium.text-gray-700:not(:first-child)');
progressBars.forEach((bar, index) => {
const randomProgress = Math.floor(Math.random() * 100);
bar.style.width = `${randomProgress}%`;
// Update the text next to the progress bar
if (progressTexts[index]) {
progressTexts[index].textContent = `${randomProgress}%`;
}
});
// Change button text temporarily
this.textContent = 'Progress Updated!';
setTimeout(() => {
this.textContent = 'Update Progress';
}, 2000);
});
// Toggle checklist items
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.addEventListener('change', function() {
const label = this.nextElementSibling;
if (this.checked) {
label.classList.add('line-through', 'text-gray-400');
} else {
label.classList.remove('line-through', 'text-gray-400');
}
});
});
// Add hover effect to phase cards
const phaseCards = document.querySelectorAll('.phase-card');
phaseCards.forEach(card => {
card.addEventListener('mouseenter', function() {
const icon = this.querySelector('.fa-check-circle');
if (icon) {
icon.classList.add('animate-bounce');
}
});
card.addEventListener('mouseleave', function() {
const icon = this.querySelector('.fa-check-circle');
if (icon) {
icon.classList.remove('animate-bounce');
}
});
});
</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=jsonet/web-development-tracking" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |