Tag Archives: Codeacademy

M1D16: Codeacademy | CSS Grid Layout

Introduction to Grids Using CSS, you can elegantly lay out elements on a web page. The Box Model and Display and Positioning explain some possible ways to style layout. The grid can be used to layout entire web pages. Whereas Flexbox is mostly useful for positioning items in … Continue reading

Posted in 6-Month Journey, Study Notes | Tagged , , | 1 Comment

CSS Flexbox Cheatsheet – Codeacademy

CSS Flexbox The CSS display: flex property sets an HTML element as a block level flex container which takes the full width of its parent container. Any child elements that reside within the flex container are called flex items. Flex items change … Continue reading

Posted in Study Notes | Tagged , , | Leave a comment

CSS Grid Cheatsheet – Codeacademy

Grid Template Columns To specify the number of columns of the grid and the widths of each column, the CSS property grid-template-columns is used on the grid container. The number of width values determines the number of columns and each width value … Continue reading

Posted in Study Notes | Tagged , , | Leave a comment

M1D10: CSS Flexbox Part 3

This is now the fourth course on CSS Flexbox I am taking. I first took the one from Udacity, then from Scrimba, and yesterday from Treehouse. So far, my top recommended is Scrimba for more hands-on approach, and Per did … Continue reading

Posted in 6-Month Journey, Study Notes | Tagged , | Leave a comment

M1D2: Introduction to HTML

Frontend Developer Roadmap Summary Here are a few more resources to add to your toolkit: HTML provides structure to the content appearing on a website, such as images, text, or videos. Right-click on any page on the internet, choose “Inspect,” … Continue reading

Posted in Study Notes | Tagged , | 1 Comment