+ 1

Can someone help me ?

How will we add css after Html in computer I don't know ?

22nd Oct 2021, 3:48 PM
Keshav Mishra
Keshav Mishra - avatar
3 Réponses
+ 4
There is three ways to adding CSS in your HTML document 1. Inline CSS For example: <p style = "color: red; font-. size=34px;">Awesome Paragraph</p> 2. Internal CSS Internal CSS can be added with using <style> tag. You can place this tag anywhere else in your code, but better to place this tag in <head> 3. External CSS External CSS can be added with <link> tag For example: <link rel = "stylesheet" href="style.css">
22nd Oct 2021, 7:27 PM
Rupali Haldiya
Rupali Haldiya - avatar
+ 3
Just you have add link of your css file in head tag. Ex: <head>   <link rel="stylesheet" href="styles.css"> </head>
22nd Oct 2021, 4:49 PM
Arun Jamson
Arun Jamson - avatar
+ 2
You can use css after class in your html file with external css file. Because, this way is really very easy. So, you can try with it. Otherwise, If you don't know about css after and before; I highly recommended you, You need read more about css.
22nd Oct 2021, 4:42 PM
Shariful Islam Sagor
Shariful Islam Sagor - avatar