+ 1
Can someone help me ?
How will we add css after Html in computer I don't know ?
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">
+ 3
Just you have add link of your css file in head tag.
Ex:
<head>
<link rel="stylesheet" href="styles.css">
</head>
+ 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.