what i learnt today in web development
i refreshed my mind on internal, inline and external css styling methodologies using the following:
for inline css we use:
<body Style = "background-colour": Black>
for external css, you need create a css file and link the page you want to reference to it with this code:
<link rel ="stylesheet" href = "csss/style.css">
for internal css
<style>
Body {background-color: blue"> </body>
i also learnt some cool stuffs on css selectors, some classes and Ids, also about favicons and html divs showing the box model.
Comments
Post a Comment