{"id":30323972,"url":"https://github.com/chiragsdev/travel-agency-website","last_synced_at":"2026-02-12T17:01:26.102Z","repository":{"id":309193356,"uuid":"906601434","full_name":"chiragsdev/Travel-Agency-Website","owner":"chiragsdev","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-21T11:51:20.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T22:32:25.611Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chiragsdev.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-21T11:10:17.000Z","updated_at":"2024-12-21T11:51:24.000Z","dependencies_parsed_at":"2025-08-10T13:33:22.112Z","dependency_job_id":"a0209546-bc04-4113-be99-1845fa9e4e2f","html_url":"https://github.com/chiragsdev/Travel-Agency-Website","commit_stats":null,"previous_names":["chiragsdev/travel-agency-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chiragsdev/Travel-Agency-Website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiragsdev%2FTravel-Agency-Website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiragsdev%2FTravel-Agency-Website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiragsdev%2FTravel-Agency-Website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiragsdev%2FTravel-Agency-Website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chiragsdev","download_url":"https://codeload.github.com/chiragsdev/Travel-Agency-Website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiragsdev%2FTravel-Agency-Website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29373837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-17T22:30:05.973Z","updated_at":"2026-02-12T17:01:26.071Z","avatar_url":"https://github.com/chiragsdev.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Travel Agency Webpage\n\n## Overview\n\nThis is a simple static webpage for a travel agency, designed with HTML, CSS, and Bootstrap. It includes sections such as a hero section, about us, services, travel packages, and contact information.\n\n---\n\n## How to Run the Webpage Locally\n\nFollow the steps below to run the webpage locally on your computer:\n\n### Prerequisites\n\n1. Ensure you have a web browser installed (e.g., Google Chrome, Mozilla Firefox, or Microsoft Edge).\n2. Make sure you have a text editor or IDE like VS Code, Sublime Text, or Notepad++ for editing purposes (optional).\n\n### Steps\n\n1. **Download the Files**\n\n   - Clone the repository or download the HTML, CSS, and image files into a local folder.\n\n   ```bash\n   git clone https://github.com/chiragaug6/Travel-Agency-Website.git\n   ```\n\n   Or download the ZIP file and extract its contents.\n\n2. **Setup the Folder Structure**\n\n   - Ensure the following folder structure:\n     ```\n     project-folder/\n     ├── index.html\n     ├── styles.css\n     ```\n\n3. **Open the HTML File**\n\n   - Navigate to the folder containing `index.html`.\n   - Right-click on `index.html` and select \"Open with...\" followed by your browser of choice.\n\n4. **View the Webpage**\n   - The webpage should now be displayed in your browser.\n\n---\n\n## Bootstrap Components Used\n\nThe following parts of the webpage utilize Bootstrap components:\n\n### 1. **Navigation Bar**\n\n- Implemented using Bootstrap's `navbar` component for a responsive header.\n\n```html\n\u003cnav class=\"navbar navbar-expand-lg navbar-light\"\u003e\u003c/nav\u003e\n```\n\n### 2. **Hero Section**\n\n- Utilizes Bootstrap utility classes for responsive text alignment and button styling.\n\n```html\n\u003cdiv class=\"container h-100 d-flex flex-column justify-content-center\"\u003e\n  \u003ca href=\"#packages\" class=\"btn btn-primary btn-md\"\u003eExplore Packages\u003c/a\u003e\n\u003c/div\u003e\n```\n\n### 3. **Card Layout**\n\n- Services and Travel Packages sections use Bootstrap's card component for consistent design.\n\n```html\n\u003cdiv class=\"card mb-4 shadow-sm\"\u003e\u003c/div\u003e\n```\n\n### 4. **Grid System**\n\n- Bootstrap's grid system is used for layout in the Services and Packages sections.\n\n```html\n\u003cdiv class=\"row\"\u003e\n  \u003cdiv class=\"col-md-4\"\u003e\u003c/div\u003e\n\u003c/div\u003e\n```\n\n### 5. **Buttons**\n\n- Modal triggers and call-to-action buttons utilize Bootstrap's button classes.\n\n```html\n\u003cbutton type=\"button\" data-toggle=\"modal\" class=\"btn btn-info\"\u003e\u003c/button\u003e\n```\n\n### 6. **Modals**\n\n- Travel package details are displayed using Bootstrap's modal component.\n\n```html\n\u003cdiv id=\"packageModal1\" class=\"modal fade\"\u003e\u003c/div\u003e\n```\n\n### 7. **Form**\n\n- The Contact Us form uses Bootstrap's form control classes for styling.\n\n```html\n\u003cform action=\"#\" method=\"#\" novalidate=\"\"\u003e\u003c/form\u003e\n```\n\n### 8. **Footer**\n\n- Styled using Bootstrap utility classes for spacing and text alignment.\n\n```html\n\u003cfooter class=\"py-4 bg-dark text-white text-center\"\u003e\u003c/footer\u003e\n```\n\n---\n\n## External Resources\n\n- [Bootstrap 4.5.2](https://getbootstrap.com/)\n- [Font Awesome Icons](https://fontawesome.com/)\n\n---\n\n## Author\n\nDeveloped by chirag solanki.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchiragsdev%2Ftravel-agency-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchiragsdev%2Ftravel-agency-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchiragsdev%2Ftravel-agency-website/lists"}