├── design ├── active-states.jpg ├── desktop-design.jpg ├── mobile-design.jpg └── desktop-preview.jpg ├── images ├── favicon-32x32.png ├── avatar-testimonial.jpg ├── icon-quotes.svg ├── icon-email.svg ├── bg-curve-mobile.svg ├── bg-curve-desktop.svg ├── icon-phone.svg ├── icon-arrow.svg ├── logo.svg ├── illustration-1.svg └── illustration-2.svg ├── .gitignore ├── style-guide.md ├── LICENSE ├── README.md ├── style.css └── index.html /design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/design/active-states.jpg -------------------------------------------------------------------------------- /design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/design/desktop-design.jpg -------------------------------------------------------------------------------- /design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/design/mobile-design.jpg -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/images/favicon-32x32.png -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/design/desktop-preview.jpg -------------------------------------------------------------------------------- /images/avatar-testimonial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Fylo-landing-page-two-column-layout_frontend_project/HEAD/images/avatar-testimonial.jpg -------------------------------------------------------------------------------- /images/icon-quotes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg-curve-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg-curve-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid accidental Sketch file upload 2 | ############################################### 3 | ## Please do not remove line 5 - thanks! 🙂 ## 4 | ############################################### 5 | *.sketch 6 | 7 | # Avoid accidental XD or Figma upload if you convert the design file 8 | ####################################################### 9 | ## Please do not remove lines 11 and 12 - thanks! 🙂 ## 10 | ####################################################### 11 | *.xd 12 | *.fig 13 | 14 | # Avoid your project being littered with annoying .DS_Store files! 15 | .DS_Store 16 | -------------------------------------------------------------------------------- /images/icon-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | - Very Dark Blue: hsl(243, 87%, 12%) 15 | - Desaturated Blue: hsl(238, 22%, 44%) 16 | 17 | ### Accent 18 | 19 | - Bright Blue: hsl(224, 93%, 58%) 20 | - Moderate Cyan: hsl(170, 45%, 43%) 21 | 22 | ### Neutral 23 | 24 | - Light Grayish Blue: hsl(240, 75%, 98%) 25 | - Light Gray: hsl(0, 0%, 75%) 26 | 27 | ## Typography 28 | 29 | ### Body Copy 30 | 31 | - Font size (paragraph): 16px 32 | 33 | ### Fonts 34 | 35 | #### Headings, Call-to-actions, Header Navigation 36 | 37 | - Family: [Raleway](https://fonts.google.com/specimen/Raleway) 38 | - Weights: 400, 700 39 | 40 | #### Body 41 | 42 | - Family: [Open Sans](https://fonts.google.com/specimen/Open+Sans) 43 | - Weights: 400 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Sarthak Sachdev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fylo Landing Page 2 | 3 | ## Welcome! 👋 4 | 5 | ## Table of contents 6 | 7 | - [Overview](#overview) 8 | - [The challenge](#the-challenge) 9 | - [How to setup the project](#how-to-setup-the-project) 10 | - [Screenshot](#screenshot) 11 | - [Links](#links) 12 | - [My process](#my-process) 13 | - [Built with](#built-with) 14 | - [What I learned](#what-i-learned) 15 | - [Continued development](#continued-development) 16 | - [Useful resources](#useful-resources) 17 | - [Author](#author) 18 | - [Acknowledgments](#acknowledgments) 19 | 20 | ## Overview 21 | 22 | ### The challenge 23 | 24 | The challenge is to create the Fylo Landing Page, a landing page for the Fylo website in a light theme. Users should be able to- 25 | - View the optimal layout for the site depending on their device's screen size 26 | - See hover states for all interactive elements on the page. 27 | 28 | ### How to setup the project 29 | 30 | To set up the project locally, follow these steps: 31 | 32 | 1. Clone the repository using GitHub Desktop or Git Bash: 33 | ```bash 34 | git clone https://github.com/SartHak-0-Sach/Fylo-landing-page-two-column-layout_frontend_project.git 35 | ``` 36 | 2. Open the project folder in your code editor. 37 | 3. Run the project using a live server extension or deploy it using Netlify, Vercel, or another web hosting and deployment service. 38 | 39 | ### Screenshot 40 | 41 | ![Design Preview](./design/active-states.jpg) 42 | 43 | ### Links 44 | 45 | - Solution URL: [GitHub Repository](https://github.com/SartHak-0-Sach/Fylo-landing-page-two-column-layout_frontend_project) 46 | - Live Site URL: [Live Site](https://fylo-landing-page-frontend-app.netlify.app/) 47 | 48 | ## My process 49 | 50 | ### Built with 51 | 52 | - HTML5 53 | - CSS3 54 | 55 | You will find all the required assets in the `/images` folder. The assets are already optimized. 56 | 57 | There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts. 58 | 59 | ### What I learned 60 | 61 | This project is a beginner friendly project with nothing much complex component to implement and thus can be also be a first project of many people and that too of great learning because of revision of concepts like flexbox and before after in CSS at one place as shown in given snippet of code- 62 | 63 | ```css 64 | .see-more { 65 | display: flex; 66 | justify-content: center; 67 | flex-direction: row; 68 | margin: 0 14.0625rem; 69 | padding-bottom: 0.3125rem; 70 | position: relative; 71 | } 72 | 73 | .see-more::after { 74 | content: " "; 75 | position: absolute; 76 | bottom: -5px; 77 | height: 2px; 78 | width: 100%; 79 | background-color: var(--accent-moderateCyan); 80 | } 81 | ``` 82 | 83 | ### Continued development 84 | 85 | The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of. 86 | 87 | These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day. 88 | 89 | ### Useful resources 90 | 91 | - [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can. 92 | - [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫 93 | - [mdn documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) - This is an amazing article which helped me finally understand promises, async and await syntax. I'd recommend it to anyone still learning this concept. 94 | 95 | ## Author 96 | 97 | Sarthak Sachdev 98 | - Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/) 99 | - LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/) 100 | - Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69) 101 | 102 | ## Acknowledgments 103 | 104 | I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack. 105 | 106 | ## Got feedback for me? 107 | 108 | I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com. 109 | 110 | If you found this project helpful, consider sharing it with others to spread the knowledge! 111 | 112 | **Happy exploring Fylo!** 🚀🌟 -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@400;700&display=swap'); 2 | 3 | :root { 4 | --primary-verydarkBlue: hsl(243, 87%, 12%); 5 | --primary-desaturatedBlue: hsl(238, 22%, 44%); 6 | 7 | --accent-brightBlue: hsl(224, 93%, 58%); 8 | --accent-moderateCyan: hsl(170, 45%, 43%); 9 | 10 | --neutral-lightgrayishBlue: hsl(240, 75%, 98%); 11 | --neutral-lightGray: hsl(0, 0%, 75%); 12 | 13 | --fs-paragraph: 1rem; 14 | 15 | /*Headings, Call-to-actions, Header Navigation*/ 16 | --ff-heading: 'Raleway', sans-serif; 17 | 18 | --ff-body: 'Open Sans', sans-serif; 19 | 20 | --fw-Bold: 700; 21 | } 22 | 23 | /*=======================================*/ 24 | /*||||||||||=====CSS RESET=====||||||||||*/ 25 | /*=======================================*/ 26 | *, 27 | *::before, 28 | *::after { 29 | box-sizing: border-box; 30 | } 31 | 32 | * { 33 | margin: 0; 34 | padding: 0; 35 | font: inherit; 36 | } 37 | 38 | html { 39 | color-scheme: dark light; 40 | } 41 | 42 | body { 43 | min-height: 100vh; 44 | } 45 | 46 | img, 47 | picture, 48 | svg, 49 | video { 50 | display: block; 51 | max-width: 100%; 52 | } 53 | 54 | a { 55 | text-decoration: none; 56 | } 57 | 58 | button:hover { 59 | cursor: pointer; 60 | } 61 | 62 | li { 63 | list-style: none; 64 | } 65 | 66 | .sr-only:not(:focus):not(:active) { 67 | clip: rect(0 0 0 0); 68 | clip-path: inset(50%); 69 | height: 1px; 70 | overflow: hidden; 71 | position: absolute; 72 | white-space: nowrap; 73 | width: 1px; 74 | } 75 | 76 | /*========================================*/ 77 | /*========================================*/ 78 | 79 | body { 80 | background-color: white; 81 | font-family: var(--ff-body); 82 | font-size: 1.75rem; 83 | } 84 | 85 | main { 86 | width: 100%; 87 | } 88 | 89 | h2 { 90 | font-family: var(--ff-heading); 91 | color: var(--primary-verydarkBlue); 92 | } 93 | 94 | p { 95 | color: var(--primary-verydarkBlue); 96 | } 97 | 98 | header { 99 | display: flex; 100 | padding: 0 48px; 101 | margin: 3rem 0 11.875rem 0; 102 | justify-content: flex-end; 103 | } 104 | 105 | header svg { 106 | margin-right: auto; 107 | } 108 | 109 | .nav_links { 110 | display: flex; 111 | gap: 3rem; 112 | } 113 | 114 | .nav_links a { 115 | color: var(--primary-verydarkBlue); 116 | } 117 | 118 | .fylo-intro { 119 | text-align: center; 120 | padding-bottom: 11.25rem; 121 | } 122 | 123 | .illustration-1 { 124 | width: 75%; 125 | margin: 0 auto; 126 | } 127 | 128 | .get-started h2 { 129 | font-weight: var(--fw-Bold); 130 | font-size: 3rem; 131 | margin: 5.625rem 2.5rem 3.75rem 2.5rem; 132 | } 133 | 134 | .get-started p { 135 | margin: 0 5.625rem 3.75rem 5.625rem; 136 | } 137 | 138 | .email { 139 | display: flex; 140 | flex-direction: column; 141 | justify-content: center; 142 | align-items: center; 143 | } 144 | 145 | .email input, 146 | .email button { 147 | width: 38rem; 148 | height: 5rem; 149 | border-radius: 0.3125rem; 150 | } 151 | 152 | .email input { 153 | background-color: white; 154 | color: var(--primary-verydarkBlue); 155 | padding-left: 2.5rem; 156 | margin-bottom: 2rem; 157 | border-color: var(--primary-desaturatedBlue); 158 | border-style: solid; 159 | } 160 | 161 | .email button { 162 | background-color: var(--accent-brightBlue); 163 | font-family: var(--ff-heading); 164 | font-weight: var(--fw-Bold); 165 | border: none; 166 | color: var(--neutral-lightgrayishBlue); 167 | } 168 | 169 | .email button, 170 | .free-trial button:hover { 171 | background-color: hsl(221, 100%, 71%); 172 | } 173 | 174 | ::placeholder { 175 | color: var(--neutral-lightGray); 176 | } 177 | 178 | /*===========================================*/ 179 | 180 | .productive { 181 | background-color: var(--neutral-lightgrayishBlue); 182 | padding-bottom: 10.1875rem; 183 | display: flex; 184 | flex-direction: column; 185 | align-items: center; 186 | } 187 | 188 | .illustration-2 { 189 | margin: 0 auto; 190 | width: 75%; 191 | } 192 | 193 | .productive h2 { 194 | font-size: 2rem; 195 | font-weight: var(--fw-Bold); 196 | text-align: center; 197 | margin: 0 0 3.75rem 0; 198 | } 199 | 200 | .prod-desc p { 201 | margin: 0 3.75rem 0 2.5rem; 202 | color: var(--primary-desaturatedBlue); 203 | } 204 | 205 | .see-more { 206 | display: flex; 207 | justify-content: center; 208 | flex-direction: row; 209 | margin: 0 14.0625rem; 210 | padding-bottom: 0.3125rem; 211 | position: relative; 212 | } 213 | 214 | .see-more::after { 215 | content: " "; 216 | position: absolute; 217 | bottom: -5px; 218 | height: 2px; 219 | width: 100%; 220 | background-color: var(--accent-moderateCyan); 221 | } 222 | 223 | .see-more a { 224 | color: var(--accent-moderateCyan); 225 | } 226 | 227 | .see-more svg { 228 | display: inline; 229 | margin: 0 0 0 0.625rem; 230 | width: 1rem; 231 | height: 1rem; 232 | background-color: #3DA08F; 233 | border-radius: 100%; 234 | } 235 | 236 | .see-more:hover::after { 237 | color: hsl(174, 59%, 88%); 238 | background-color: hsl(174, 59%, 88%); 239 | } 240 | 241 | .see-more svg:hover { 242 | background-color: hsl(174, 59%, 88%); 243 | } 244 | 245 | .see-more a:hover { 246 | color: hsl(174, 59%, 88%); 247 | } 248 | 249 | .testimonial { 250 | padding: 2.25rem 0 2.5rem 0; 251 | margin: 0 5.9375rem 0 5.9375rem; 252 | display: flex; 253 | flex-direction: column; 254 | background-color: white; 255 | border-radius: 0.625rem; 256 | box-shadow: 0px 0px 1.875rem var(--neutral-lightGray); 257 | } 258 | 259 | .testimonial img { 260 | display: flex; 261 | justify-content: left; 262 | align-items: left; 263 | width: 1.8125rem; 264 | height: 1.8125rem; 265 | margin: 0 0 1.5625rem 0; 266 | margin-left: 3.125rem; 267 | } 268 | 269 | .testimonial p { 270 | font-size: 1.3125rem; 271 | margin: 0 2rem 2rem 3.3125rem; 272 | color: var(--primary-verydarkBlue); 273 | } 274 | 275 | .profile { 276 | display: flex; 277 | } 278 | 279 | .profile img { 280 | width: 3rem; 281 | height: 3rem; 282 | border-radius: 100%; 283 | } 284 | 285 | span { 286 | margin-left: 0.875rem; 287 | } 288 | 289 | .profile h3 { 290 | color: var(--primary-verydarkBlue); 291 | font-family: var(--ff-heading); 292 | font-weight: var(--fw-Bold); 293 | font-size: 1.3125rem; 294 | } 295 | 296 | .profile p { 297 | font-size: 0.8125rem; 298 | margin: 0; 299 | } 300 | 301 | /*====================================*/ 302 | .early-access { 303 | background-color: var(--primary-desaturatedBlue); 304 | text-align: center; 305 | display: flex; 306 | flex-direction: column; 307 | align-items: center; 308 | justify-content: center; 309 | } 310 | 311 | .early-access h2 { 312 | color: white; 313 | font-weight: var(--fw-Bold); 314 | font-size: 2.25rem; 315 | margin: 7.1875rem 0 3.125rem 0; 316 | } 317 | 318 | .early-access p { 319 | font-size: 1.75rem; 320 | color: white; 321 | padding: 0 7.375rem 0 4.5rem; 322 | margin-bottom: 3.125rem; 323 | } 324 | 325 | .free-trial input, 326 | .free-trial button { 327 | width: 30rem; 328 | height: 4rem; 329 | border-radius: 0.3125rem; 330 | margin: 0 8.625rem 0 8.25rem; 331 | } 332 | 333 | .free-trial input { 334 | background-color: white; 335 | color: var(--primary-verydarkBlue); 336 | padding-left: 1.25rem; 337 | margin-bottom: 2rem; 338 | border-color: var(--primary-desaturatedBlue); 339 | border-style: solid; 340 | } 341 | 342 | .free-trial button { 343 | background-color: var(--accent-brightBlue); 344 | font-family: var(--ff-heading); 345 | font-weight: var(--fw-Bold); 346 | border: none; 347 | margin-bottom: 8.875rem; 348 | color: var(--neutral-lightgrayishBlue); 349 | } 350 | 351 | /*===========================================*/ 352 | 353 | footer { 354 | display: flex; 355 | flex-direction: column; 356 | padding-left: 5rem; 357 | padding-bottom: 5.875rem; 358 | padding-top: 8.125rem; 359 | background-color: var(--primary-verydarkBlue); 360 | line-height: 2em; 361 | } 362 | 363 | footer path { 364 | fill: var(--neutral-lightgrayishBlue); 365 | } 366 | 367 | .contact-info { 368 | margin-top: 4.5rem; 369 | } 370 | 371 | .contact-info img { 372 | display: inline; 373 | margin-right: 0.625rem; 374 | } 375 | 376 | .contact-info p { 377 | color: var(--neutral-lightgrayishBlue); 378 | } 379 | 380 | footer nav { 381 | margin-top: 7.5rem; 382 | margin-bottom: 5rem; 383 | } 384 | 385 | footer li { 386 | list-style: none; 387 | } 388 | 389 | footer a { 390 | color: var(--neutral-lightgrayishBlue); 391 | } 392 | 393 | .contact-list { 394 | margin-top: 6.25rem; 395 | } 396 | 397 | .social-media { 398 | display: flex; 399 | justify-content: center; 400 | flex-direction: row; 401 | } 402 | 403 | .social-media svg { 404 | width: 3.375rem; 405 | height: 3.375rem; 406 | } 407 | 408 | .twitter { 409 | margin: 0 1.375rem; 410 | } 411 | 412 | .footer-nav a:hover { 413 | color: var(--accent-brightBlue); 414 | } 415 | 416 | .social-media path:hover { 417 | fill: var(--accent-brightBlue); 418 | } 419 | 420 | /*=========================================*/ 421 | 422 | @media (min-width: 751px) { 423 | body { 424 | font-size: var(--fs-paragraph); 425 | } 426 | 427 | main { 428 | padding-top: 4rem; 429 | } 430 | 431 | header { 432 | margin: 0 0 10rem 0; 433 | padding: 0 5rem; 434 | } 435 | 436 | .fylo-intro { 437 | display: flex; 438 | flex-direction: row-reverse; 439 | text-align: left; 440 | padding: 0 5rem; 441 | align-items: center; 442 | gap: 3.125rem; 443 | padding-bottom: 11.25rem; 444 | } 445 | 446 | .get-started { 447 | width: 50%; 448 | } 449 | 450 | .get-started h2 { 451 | margin: 0 0 2rem 0; 452 | font-size: 2.375rem; 453 | } 454 | 455 | .get-started p { 456 | padding: 0; 457 | margin: 0 0 1.75rem 0; 458 | font-size: 1.1875rem; 459 | } 460 | 461 | .email { 462 | display: flex; 463 | flex-direction: row; 464 | justify-content: left; 465 | margin: 0; 466 | gap: 1rem; 467 | } 468 | 469 | .email input { 470 | width: 20rem; 471 | height: 2.8125rem; 472 | margin: 0; 473 | border: 0.0625rem solid var(--neutral-lightGray); 474 | border-radius: 0.1875rem; 475 | padding-left: 1.25rem; 476 | } 477 | 478 | .email button { 479 | width: 12.5rem; 480 | height: 2.8125rem; 481 | } 482 | 483 | .illustration-1 { 484 | width: 50%; 485 | } 486 | 487 | .productive { 488 | display: flex; 489 | flex-direction: row-reverse; 490 | margin: 0; 491 | padding: 0 5rem 6.625rem 5rem; 492 | text-align: left; 493 | gap: 5rem; 494 | } 495 | 496 | .illustration-2 { 497 | width: 50%; 498 | } 499 | 500 | .prod-desc { 501 | width: 50%; 502 | } 503 | 504 | .prod-desc h2 { 505 | margin: 0 0 2.5rem 0; 506 | text-align: left; 507 | font-size: 2.25rem; 508 | } 509 | 510 | .prod-desc p { 511 | padding: 0 3.75rem 0 0; 512 | margin: 0; 513 | } 514 | 515 | .see-more { 516 | display: flex; 517 | justify-content: left; 518 | margin: 0 0 2.5rem 0; 519 | width: 21%; 520 | 521 | } 522 | 523 | .testimonial { 524 | width: 22.25rem; 525 | height: 13.5rem; 526 | display: flex; 527 | margin: 0; 528 | padding: 0 1.25rem 0 2.0625rem; 529 | } 530 | 531 | .testimonial img { 532 | width: 0.8125rem; 533 | height: 0.75rem; 534 | margin: 1.5625rem 0 1.1875rem 0; 535 | } 536 | 537 | .testimonial p { 538 | font-size: 0.875rem; 539 | padding: 0; 540 | margin: 0 0 1.0625rem 0; 541 | } 542 | 543 | #bg-curve-mobile{ 544 | width: 100%; 545 | } 546 | 547 | .profile { 548 | margin: 0; 549 | padding: 0; 550 | } 551 | 552 | .profile img { 553 | width: 2rem; 554 | height: 2rem; 555 | margin: 0; 556 | } 557 | 558 | span { 559 | margin-left: 8px; 560 | } 561 | 562 | .profile h3 { 563 | font-size: 0.875rem; 564 | } 565 | 566 | .profile p { 567 | font-size: 0.625rem; 568 | } 569 | 570 | .early-access { 571 | display: flex; 572 | flex-direction: row; 573 | margin: 0; 574 | padding: 7rem 5rem 6.125rem 5rem; 575 | gap: 15.25rem; 576 | } 577 | 578 | .ea-desc { 579 | text-align: left; 580 | width: 50%; 581 | padding: 0; 582 | margin: 0; 583 | } 584 | 585 | .ea-desc h2 { 586 | margin: 0; 587 | padding: 0; 588 | font-size: 1.875rem; 589 | margin-bottom: 1.875rem; 590 | } 591 | 592 | .ea-desc p { 593 | padding: 0; 594 | margin: 0; 595 | font-size: 1rem; 596 | } 597 | 598 | .free-trial { 599 | display: flex; 600 | flex-direction: column; 601 | margin: 0; 602 | padding: 0; 603 | width: 50%; 604 | gap: 1rem; 605 | } 606 | 607 | .free-trial input { 608 | width: 30rem; 609 | height: 3rem; 610 | margin: 0; 611 | padding-left: 1.25rem; 612 | } 613 | 614 | .free-trial button { 615 | width: 12.5rem; 616 | height: 3rem; 617 | margin: 0; 618 | padding: 0; 619 | } 620 | 621 | footer { 622 | display: flex; 623 | flex-direction: row; 624 | padding: 6.875rem 5rem 4.5rem 5rem; 625 | margin: 0; 626 | height: 24.4375rem; 627 | } 628 | 629 | .fylo-footer { 630 | margin: 0 13.75rem 0 0; 631 | padding: 0; 632 | } 633 | 634 | .contact-info { 635 | margin: 1.5rem 0 0 0; 636 | } 637 | 638 | .footer-nav { 639 | display: flex; 640 | gap: 11.875rem; 641 | margin: 0; 642 | padding: 4.375rem 0 0 0; 643 | } 644 | 645 | .contact-list { 646 | margin-top: 0; 647 | margin-right: 11.5625rem; 648 | } 649 | 650 | .social-media { 651 | margin: 0; 652 | padding: 3.75rem 0 0 0; 653 | } 654 | 655 | .social-media a { 656 | height: 1.9375rem; 657 | width: 1.9375rem; 658 | } 659 | 660 | } 661 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | Fylo- file management application 15 | 16 | 17 | 18 |
19 |

Fylo- File management application for the modern generation

20 |
21 | 27 | 28 | 29 | 30 | 31 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 47 | 48 | 55 |
56 | 57 |
58 | this is an illustration of 2 people putting all their files in one huge folder 63 |
64 |

All your files in one secure location, accessible anywhere.

65 | 66 |

67 | Fylo stores your most important files in one secure location. Access 68 | them wherever you need, share and collaborate with friends, family, 69 | and co-workers. 70 |

71 | 72 | 81 |
82 |
83 | 84 | 85 | 89 | curve-mobile 94 | 95 | 96 |
97 | this is an illustration of 3 people holding up speach bubbles 102 |
103 |

Stay productive, wherever you are

104 | 105 |

106 | Never let location be an issue when accessing your files. Fylo has 107 | you covered for all of your file storage needs. 108 |

109 | 110 |
111 | 112 |

113 | Securely share files and folders with friends, family and colleagues 114 | for live collaboration. No email attachments required! 115 |

116 | 117 |
118 | 119 | 162 | 163 |
164 | 165 |
166 | 167 |

168 | Fylo has improved our team productivity by an order of magnitude. 169 | Since making the switch our team has become a well-oiled 170 | collaboration machine. 171 |

172 | 173 |
174 | 175 | 176 | 177 |

Kyle Burton

178 |

Founder & CEO, Huddle

179 |
180 |
181 |
182 |
183 |
184 | 185 |
186 |
187 |

Get early access today

188 | 189 |

190 | It only takes a minute to sign up and our free starter tier is 191 | extremely generous. If you have any questions, our support team 192 | would be happy to help you. 193 |

194 |
195 | 196 |
197 | 203 | 204 |
205 |
206 | 207 | 311 |
312 | 313 | 314 | -------------------------------------------------------------------------------- /images/illustration-1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-2.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------