Styling linksLinks are the essence of the web, connecting one page to the other. They are crucial for navigation, but the default blue underline style doesn't always fit every design. You can control the color of the links that haven't been visited by the user. W...Apr 24, 2024·1 min read
Font stylesFonts play a crucial role in web design, influencing readability, aesthetics, and user experience. They breathe life to the words of the page and set tone of the content. The font-family in CSS lets you specify the typeface for your text. Georgia Ari...Apr 24, 2024·2 min read
Styling textAnother really important element of web design is text styling. text-align: center; text-align: left; text-align: right; Use text-align: justify to align text to both the left and right edges by adjusting the spacing between words, ensuring that each...Apr 24, 2024·2 min read
DimensionsTo make pages that look nice and balanced. Pixels are used as a measuring unit to control the dimensions of elements. When you hear of screen resolutions like 4K, this means a display width of approximately 4,000 pixels. When you hear of screen resol...Apr 24, 2024·2 min read
Write Less CSS by Taking Advantage of InheritanceNot every property is inherited but it tends to be anything that is typography related. body { margin: 0; font-family: 'PT Serif'; line-hight: 1.6; } h1{ font-family: "Cinzel", serif; } margin: 0; gets rid of the extra-spacing that ...Apr 23, 2024·3 min read
JavaScript User InputsHandling user inputs effectively will make your web page stand out. The confirm () box asks the user to accept or reject something. Similar to alert () and prompt (), the box takes the focus away from the current window and forces the user to read th...Apr 21, 2024·1 min read