August 01, 2023 August 02, 2023 Hey folks, Jaani Here I'm writing this, the summary of whatever I've learned in the past two days. As I moved to CSS (Cascading Style Sheet) lectures. Things started getting more interesting. At first, when I tried to learn, I got nothing, literally nothing, but then I went to chatGPT and told it that write some CSS code for my webpage, It wrote that in some file named style.css, and I then inked it top my HTML file, and the result was pretty awesome. After doing all this stuff, then I went to selectors lecture and tried to understand. The next day I learned about properties and their values, made their notes and applied them on a webpage. I'm adding a screenshot of the webpage in which chatGPT helped in CSS and the style.css code below style.css /* Reset default margin and padding for all elements */ body , h1 , h2 , h3 , h4 , h5 , h6 , p , ul , li { margin : 0 ; padding : 0 ; } /* Set default font sty...
Comments
Post a Comment