├── README.md ├── .github └── workflows │ └── azure-static-web-apps-blue-ocean-097c62710.yml └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Destination Paradise 2 | 3 | Welcome to **Destination Paradise** – a responsive and visually engaging travel website template designed to help users discover their dream getaway! 4 | 5 | ## Overview 6 | 7 | This project is a front-end template built with HTML, CSS, and JavaScript. It features: 8 | - A full-screen header with an attractive background image and animated welcome messages. 9 | - A navigation menu that smoothly scrolls to sections such as Destinations, Gallery, Offers, Testimonials, and Contact. 10 | - A **Destinations** section showcasing top travel spots with images and descriptions. 11 | - A **Special Offers** section highlighting exclusive travel deals. 12 | - A **Testimonials** section with client reviews. 13 | - A **Contact** section including a form for inquiries. 14 | - A newsletter subscription form in the footer. 15 | - Interactive elements like scroll-triggered animations and a “Back to Top” button. 16 | 17 | ## Features 18 | 19 | - **Responsive Design:** Optimized for desktops, tablets, and mobile devices. 20 | - **Animated UI:** Uses CSS animations and JavaScript’s Intersection Observer for smooth fade-in effects. 21 | - **Easy Navigation:** Clearly defined sections for a seamless user experience. 22 | - **Modern Aesthetics:** Clean layout with vibrant imagery and stylish components. 23 | 24 | ## Technologies Used 25 | 26 | - **HTML5** for structure. 27 | - **CSS3** for styling and animations. 28 | 29 | ## Getting Started 30 | 31 | ### Prerequisites 32 | 33 | All you need is a modern web browser. No additional software or libraries are required. 34 | 35 | ### Installation 36 | 37 | 1. **Clone the Repository:** 38 | ```bash 39 | git clone https://github.com/Krishna18062005/Destination_Paradise.git 40 | -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-blue-ocean-097c62710.yml: -------------------------------------------------------------------------------- 1 | name: Azure Static Web Apps CI/CD 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | types: [opened, synchronize, reopened, closed] 9 | branches: 10 | - main 11 | 12 | jobs: 13 | build_and_deploy_job: 14 | if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') 15 | runs-on: ubuntu-latest 16 | name: Build and Deploy Job 17 | steps: 18 | - uses: actions/checkout@v3 19 | with: 20 | submodules: true 21 | lfs: false 22 | - name: Build And Deploy 23 | id: builddeploy 24 | uses: Azure/static-web-apps-deploy@v1 25 | with: 26 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BLUE_OCEAN_097C62710 }} 27 | repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) 28 | action: "upload" 29 | ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### 30 | # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig 31 | app_location: "/" # App source code path 32 | api_location: "" # Api source code path - optional 33 | output_location: "/" # Built app content directory - optional 34 | ###### End of Repository/Build Configurations ###### 35 | 36 | close_pull_request_job: 37 | if: github.event_name == 'pull_request' && github.event.action == 'closed' 38 | runs-on: ubuntu-latest 39 | name: Close Pull Request Job 40 | steps: 41 | - name: Close Pull Request 42 | id: closepullrequest 43 | uses: Azure/static-web-apps-deploy@v1 44 | with: 45 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BLUE_OCEAN_097C62710 }} 46 | action: "close" 47 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Destination Paradise 7 | 323 | 324 | 325 | 326 |
327 | 337 |

Welcome to Destination Paradise

338 |

Discover your dream getaway

339 |
340 | 341 | 342 |
343 |

Our Top Destinations

344 |
345 |
346 | Beach Escapes 350 |

Beach Escapes

351 |

352 | Relax on sun-kissed shores with crystal clear water and pristine 353 | sands. 354 |

355 |
356 |
357 | Mountain Retreats 361 |

Mountain Retreats

362 |

363 | Embrace tranquility with breathtaking mountain views and fresh air. 364 |

365 |
366 |
367 | City Adventures 371 |

City Adventures

372 |

373 | Experience the vibrant life of cities rich in culture and history. 374 |

375 |
376 |
377 |
378 | 379 | 380 |
381 |

Plan Your Trip Today!

382 | Get in Touch 383 |
384 | 385 | 386 | 409 | 410 | 411 |
412 |

Special Offers

413 |
414 |
415 | Summer Escape Deal 419 |

Summer Escape Deal

420 |

421 | Enjoy up to 30% off on our exclusive beach holiday packages this 422 | summer! 423 |

424 | Learn More 425 |
426 |
427 | Mountain Adventure 431 |

Mountain Adventure

432 |

433 | Get special rates on mountain retreats and hiking tours. Book now! 434 |

435 | Learn More 436 |
437 |
438 | City Break Special 442 |

City Break Special

443 |

444 | Discover the charm of the city with our limited-time deals for urban 445 | explorers. 446 |

447 | Learn More 448 |
449 |
450 |
451 | 452 | 453 |
454 |

What Our Clients Say

455 |
456 |
457 |

458 | "The trip was a dream come true! Every detail was perfect. I can't 459 | wait to book my next adventure." 460 |

461 |

- Alex Johnson

462 |
463 |
464 |

465 | "Exceptional service and breathtaking destinations. Destination 466 | Paradise exceeded all my expectations!" 467 |

468 |

- Maria Rodriguez

469 |
470 |
471 |

472 | "A seamless experience from booking to the final return. Highly 473 | recommended for a hassle-free vacation." 474 |

475 |

- David Lee

476 |
477 |
478 |
479 | 480 | 481 |
482 |

Contact Us

483 |
484 | 485 | 486 | 492 | 493 |
494 |
495 | 496 | 497 | 512 | 513 | 514 | 515 | 516 | 547 | 548 | 549 | --------------------------------------------------------------------------------