├── images ├── menu.png ├── t1.jpg ├── t2.jpg ├── t3.jpg ├── u-1.png ├── u-2.png ├── u-3.png ├── u-4.png ├── us-bg.jpg ├── hero-bg.jpg ├── twitter.png ├── contact-img.jpg ├── healthy-bg.jpg ├── search-icon.png ├── trainer-bg.jpg ├── envelope-white.png ├── facebook-logo.png ├── instagram-logo.png ├── location-white.png └── telephone-white.png ├── css ├── responsive.css ├── style.css.map ├── style.scss └── style.css ├── .github └── workflows │ └── azure-static-web-apps-ambitious-meadow-0cb22fd10.yml ├── contact.html ├── why.html ├── trainer.html ├── index.html └── js └── jquery-3.4.1.min.js /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t1.jpg -------------------------------------------------------------------------------- /images/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t2.jpg -------------------------------------------------------------------------------- /images/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t3.jpg -------------------------------------------------------------------------------- /images/u-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-1.png -------------------------------------------------------------------------------- /images/u-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-2.png -------------------------------------------------------------------------------- /images/u-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-3.png -------------------------------------------------------------------------------- /images/u-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-4.png -------------------------------------------------------------------------------- /images/us-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/us-bg.jpg -------------------------------------------------------------------------------- /images/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/hero-bg.jpg -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/twitter.png -------------------------------------------------------------------------------- /images/contact-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/contact-img.jpg -------------------------------------------------------------------------------- /images/healthy-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/healthy-bg.jpg -------------------------------------------------------------------------------- /images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/search-icon.png -------------------------------------------------------------------------------- /images/trainer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/trainer-bg.jpg -------------------------------------------------------------------------------- /images/envelope-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/envelope-white.png -------------------------------------------------------------------------------- /images/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/facebook-logo.png -------------------------------------------------------------------------------- /images/instagram-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/instagram-logo.png -------------------------------------------------------------------------------- /images/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/location-white.png -------------------------------------------------------------------------------- /images/telephone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/telephone-white.png -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 1120px) {} 2 | 3 | @media (max-width: 992px) { 4 | .hero_area { 5 | height: auto; 6 | } 7 | 8 | .custom_nav-container .nav_search-btn { 9 | background-position: center; 10 | margin-top: 10px; 11 | } 12 | 13 | .slider_section { 14 | padding-top: 45px; 15 | padding-bottom: 75px; 16 | } 17 | 18 | .info_items { 19 | width: 100%; 20 | } 21 | } 22 | 23 | @media (max-width: 768px) { 24 | .contact_section .form_container { 25 | padding: 45px 0; 26 | } 27 | 28 | .info_items { 29 | flex-direction: column; 30 | align-items: center; 31 | } 32 | 33 | .contact_section .heading_container { 34 | justify-content: center; 35 | } 36 | 37 | .contact_section .heading_container h2::before { 38 | left: 50%; 39 | transform: translateX(-50%); 40 | } 41 | 42 | .contact_section button { 43 | margin: 45px auto 0 auto; 44 | } 45 | } 46 | 47 | 48 | @media (max-width: 576px) { 49 | .slider_section .detail-box h1 { 50 | font-size: 3rem; 51 | } 52 | } 53 | 54 | @media (max-width: 480px) {} 55 | 56 | @media (max-width: 420px) { 57 | .slider_section .detail-box h1 { 58 | letter-spacing: .3rem; 59 | } 60 | } 61 | 62 | @media (max-width: 360px) {} 63 | 64 | @media (min-width: 1200px) { 65 | .container { 66 | max-width: 1170px; 67 | } 68 | } -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-ambitious-meadow-0cb22fd10.yml: -------------------------------------------------------------------------------- 1 | name: Azure Static Web Apps CI/CD 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [opened, synchronize, reopened, closed] 9 | branches: 10 | - master 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_AMBITIOUS_MEADOW_0CB22FD10 }} 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_AMBITIOUS_MEADOW_0CB22FD10 }} 46 | action: "close" 47 | -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
86 |
93 | 99 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 100 |
101 |
108 | 114 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 115 |
116 |
123 | 129 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 130 |
131 |
138 | 144 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 145 |
146 |
96 |
119 |
142 |
243 | 249 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 250 |
251 |
258 | 264 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 265 |
266 |
273 | 279 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 280 |
281 |
288 | 294 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 295 |
296 |319 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 320 |
321 |
354 |
377 |
400 |
428 |