2: CSS
CSS This is a comment in CSS: /**/ You can use CSS in three ways: Inline CSS Internal CSS External CSS Inline CSS: You have already studied Inline CSS in HTML blog, ie all the style used within the line of HTML code is Inline CSS. Internal CSS: Internal CSS is styling the webpage, when you write the code within the head of the document and it will apply automatically to the whole webpage. Go in < head ></ head > tag and add a tag < style ></ style > and within it whatever property you give, will be applied to the whole page. Like if you want to make the whole background black , you will use body { background-color : black ; } within < head ></ head > tag. If you want to make all paragraphs white, use p { color : white ;} within < head ></ head > tag. a External CSS: In External CSS, you use an entirely diff...