├── LICENSE ├── README.md ├── img ├── .DS_Store ├── cover.jpg ├── startup1.jpg ├── startup2.jpg ├── startup3.jpg ├── startup4.jpg ├── startup5.jpg └── startup6.jpg ├── index.html └── style.css /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Assaf Elovic 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Basic-Landing-Page-Layout 2 | A basic landing page layout template using mainly CSS (Grid and Flex). 3 | 4 | To learn more, visit: http://www.assafelovic.com/blog/2019/9/7/how-to-build-a-landing-page-in-10min 5 | -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/.DS_Store -------------------------------------------------------------------------------- /img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/cover.jpg -------------------------------------------------------------------------------- /img/startup1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup1.jpg -------------------------------------------------------------------------------- /img/startup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup2.jpg -------------------------------------------------------------------------------- /img/startup3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup3.jpg -------------------------------------------------------------------------------- /img/startup4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup4.jpg -------------------------------------------------------------------------------- /img/startup5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup5.jpg -------------------------------------------------------------------------------- /img/startup6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafelovic/Basic-Landing-Page-Layout/aa806de38ed1a85bf9855a6de55624c5602578ed/img/startup6.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Basic LP Layout 5 | 6 | 7 | 8 | 16 |
17 | 18 |

Making the world a better place

19 |
20 |
21 |
22 | 23 |
24 |

Team play

25 |

We believe in working together

26 | 27 |
28 |
29 |
30 |
31 |

Team play

32 |

We believe in working together

33 | 34 |
35 |
36 |
37 |
38 |

Team play

39 |

We believe in working together

40 | 41 |
42 |
43 |
44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Rule of thumb: Use grid when we have grid-like views (such sa cards) 3 | such as tables, cards, albums or anything where we need to manipulate different items in columns or rows 4 | In all other use cases consider using flex. 5 | 6 | The following is a great template for doing page LAYOUTS. From here you can easily continue your own project. 7 | */ 8 | 9 | /* Resetting margin since some browsers have their own set margin */ 10 | body { 11 | margin: 0 auto; 12 | font-family: Helvetica; 13 | } 14 | 15 | .zone { 16 | color:#FFF; 17 | font-size:2em; 18 | border-radius:4px; 19 | transition: all 0.3s linear; 20 | } 21 | 22 | .zone:hover { 23 | -webkit-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px; 24 | -moz-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px; 25 | -o-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px; 26 | box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px; 27 | } 28 | 29 | /*********************************************************************** 30 | * Nav Bar 31 | **********************************************************************/ 32 | /* 33 | use flex so we have one direction row as needed for header. 34 | since creating