Semantic Versioning Explained
18 |An explanation of what semantic versioning is and why it is important.
21 | Read More 22 |├── 06-simple-blog ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 07-08-user-profile ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 14-button-component-library ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 15-16-input-component-library ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 17-basic-portfolio ├── index.html └── styles.css ├── 21-modal ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 22-23-navbar ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 25-grid-page-layout ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 26-27-image-gallery ├── after │ ├── imgs │ │ ├── img-1.jpg │ │ ├── img-10.jpg │ │ ├── img-11.jpg │ │ ├── img-12.jpg │ │ ├── img-13.jpg │ │ ├── img-14.jpg │ │ ├── img-15.jpg │ │ ├── img-16.jpg │ │ ├── img-17.jpg │ │ ├── img-18.jpg │ │ ├── img-19.jpg │ │ ├── img-2.jpg │ │ ├── img-20.jpg │ │ ├── img-3.jpg │ │ ├── img-4.jpg │ │ ├── img-5.jpg │ │ ├── img-6.jpg │ │ ├── img-7.jpg │ │ ├── img-8.jpg │ │ └── img-9.jpg │ ├── index.html │ └── styles.css └── before │ ├── imgs │ ├── img-1.jpg │ ├── img-10.jpg │ ├── img-11.jpg │ ├── img-12.jpg │ ├── img-13.jpg │ ├── img-14.jpg │ ├── img-15.jpg │ ├── img-16.jpg │ ├── img-17.jpg │ ├── img-18.jpg │ ├── img-19.jpg │ ├── img-2.jpg │ ├── img-20.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img-7.jpg │ ├── img-8.jpg │ └── img-9.jpg │ └── index.html ├── 32-bootcamp-landing-page ├── after │ ├── img │ │ ├── arrow_down.svg │ │ ├── database_icon.svg │ │ ├── edit_page_icon.svg │ │ ├── header_image.jpg │ │ ├── html_icon.svg │ │ ├── node_js_icon.svg │ │ ├── react_icon.svg │ │ ├── vscode_icon.svg │ │ └── wds_logo.png │ ├── index.html │ └── styles.css └── before │ └── img │ ├── arrow_down.svg │ ├── database_icon.svg │ ├── edit_page_icon.svg │ ├── header_image.jpg │ ├── html_icon.svg │ ├── node_js_icon.svg │ ├── react_icon.svg │ ├── vscode_icon.svg │ └── wds_logo.png ├── 35-button-component-library-upgrades ├── after │ ├── index.html │ └── styles.css └── before │ ├── index.html │ └── styles.css ├── 36-37-input-component-library-upgrades ├── after │ ├── index.html │ └── styles.css └── before │ ├── index.html │ └── styles.css ├── 40-custom-checkbox ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 41-tooltip ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 48-bootcamp-pricing-upgrade ├── after │ ├── img │ │ ├── arrow_down.svg │ │ ├── database_icon.svg │ │ ├── edit_page_icon.svg │ │ ├── header_image.jpg │ │ ├── html_icon.svg │ │ ├── node_js_icon.svg │ │ ├── react_icon.svg │ │ ├── vscode_icon.svg │ │ └── wds_logo.png │ ├── index.html │ └── styles.css └── before │ ├── img │ ├── arrow_down.svg │ ├── database_icon.svg │ ├── edit_page_icon.svg │ ├── header_image.jpg │ ├── html_icon.svg │ ├── node_js_icon.svg │ ├── react_icon.svg │ ├── vscode_icon.svg │ └── wds_logo.png │ ├── index.html │ └── styles.css ├── 50-51-button-transition ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 54-advanced-button-animation ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 55-56-loading-text-animation ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html ├── 57-tooltip-animation ├── after │ ├── index.html │ └── styles.css └── before │ ├── index.html │ └── styles.css ├── 59-3d-cube ├── after │ ├── index.html │ └── styles.css └── before │ └── index.html └── 60-bootcamp-animations ├── after ├── img │ ├── arrow_down.svg │ ├── database_icon.svg │ ├── edit_page_icon.svg │ ├── header_image.jpg │ ├── html_icon.svg │ ├── node_js_icon.svg │ ├── react_icon.svg │ ├── vscode_icon.svg │ └── wds_logo.png ├── index.html └── styles.css └── before ├── img ├── arrow_down.svg ├── database_icon.svg ├── edit_page_icon.svg ├── header_image.jpg ├── html_icon.svg ├── node_js_icon.svg ├── react_icon.svg ├── vscode_icon.svg └── wds_logo.png ├── index.html └── styles.css /06-simple-blog/after/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |An explanation of what semantic versioning is and why it is important.
21 | Read More 22 |React portal lets components be rendered outside their parent component which is incredibly useful in specific scenarios explained in depth in this article.
28 | Read More 29 |An explanation of what semantic versioning is and why it is important.
20 | Read More 21 |React portal lets components be rendered outside their parent component which is incredibly useful in specific scenarios explained in depth in this article.
27 | Read More 28 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit quaerat totam impedit fugiat doloribus quia eos iste ea facilis ipsam cum placeat cumque numquam sunt vero consectetur qui tenetur voluptatibus, officia commodi quibusdam iusto beatae nam distinctio. Voluptatem nisi voluptate perferendis odio. Aperiam tenetur, eius distinctio iusto sapiente quia reiciendis repellat! Atque ipsum vel eius blanditiis veritatis nihil, cupiditate impedit doloribus esse deleniti recusandae laborum? Commodi, quae nulla. A omnis accusamus cupiditate dicta ea sit fugit facere, ipsum rerum commodi deserunt magnam similique, libero, quidem esse laboriosam laborum! Aut reiciendis voluptas voluptatum maiores autem non similique praesentium eligendi dolorum deleniti!
18 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero, et reprehenderit blanditiis nulla ratione eveniet, voluptatum labore hic iste quisquam sint delectus neque deserunt quibusdam voluptatem quia enim. Vitae ratione dolorem aut nisi, rem quidem quis enim, perferendis quae hic doloribus dolor cupiditate repellat magni omnis laboriosam, nulla maxime! Iusto.
23 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero, et reprehenderit blanditiis nulla ratione eveniet, voluptatum labore hic iste quisquam sint delectus neque deserunt quibusdam voluptatem quia enim. Vitae ratione dolorem aut nisi, rem quidem quis enim, perferendis quae hic doloribus dolor cupiditate repellat magni omnis laboriosam, nulla maxime! Iusto.
22 |Start with the basics by learning HTML/CSS to build your first website
32 |Build interactive web applications with the world’s most popular backend
36 |Use the latest technology for editing and creating amazing web applications
40 |Manage application data by learning SQL and NoSQL database architecture
44 |Create stunning designs by using modern design tools like Figma and Sketch
48 |Use the most popular frontend framework to create modern PWAs
52 |That’s right. All of this amazing content is available completely for free on YouTube!
58 |Start with the basics by learning HTML/CSS to build your first website
33 |Build interactive web applications with the world’s most popular backend
37 |Use the latest technology for editing and creating amazing web applications
41 |Manage application data by learning SQL and NoSQL database architecture
45 |Create stunning designs by using modern design tools like Figma and Sketch
49 |Use the most popular frontend framework to create modern PWAs
53 |Start with the basics by learning HTML/CSS to build your first website
32 |Build interactive web applications with the world’s most popular backend
36 |Use the latest technology for editing and creating amazing web applications
40 |Manage application data by learning SQL and NoSQL database architecture
44 |Create stunning designs by using modern design tools like Figma and Sketch
48 |Use the most popular frontend framework to create modern PWAs
52 |That’s right. All of this amazing content is available completely for free on YouTube!
58 |Start with the basics by learning HTML/CSS to build your first website
33 |Build interactive web applications with the world’s most popular backend
37 |Use the latest technology for editing and creating amazing web applications
41 |Manage application data by learning SQL and NoSQL database architecture
45 |Create stunning designs by using modern design tools like Figma and Sketch
49 |Use the most popular frontend framework to create modern PWAs
53 |Start with the basics by learning HTML/CSS to build your first website
33 |Build interactive web applications with the world’s most popular backend
37 |Use the latest technology for editing and creating amazing web applications
41 |Manage application data by learning SQL and NoSQL database architecture
45 |Create stunning designs by using modern design tools like Figma and Sketch
49 |Use the most popular frontend framework to create modern PWAs
53 |