Posts

Showing posts with the label CSS

Learn CSS as a Beginner - day 2 | 90 Day Code

Image
 Learn CSS as a Beginner - day 2 There are three core part in web development:  HTML CSS JavaScript CSS - (Cascading Style Sheets) makes web page beautiful. Add makeup in text, audio, video, table, input.  CSS can style a html tag in three ways:  Inline CSS Internal CSS External CSS 1. Inline CSS:  It's direct apply in html element  use style attribute Inline css override the style which are define by the internal or external CSS Ex: <p style="color: blue">I am blue text</p> 2. Internal CSS: write <style></style> tag under the <head> tag. <style>p {color: blue;}</style> 3. External CSS:  Professionaly every developer use external css to manage their html code. In your html code write <link rel="stylesheet" href="style.css"/> in the head tag.  Example:  HTML Color : you can use color in your website in five different ways.  Color names: <h1 style="color: tomato">Tomato Color</h1>...