0
How we put this css code in html there is many paragraph how it will executed with related p tag?
3 Réponses
+ 5
If I understand your question correctly, you’re asking how to link a css stylesheet to an html document and how to apply styles to all your paragraphs.
1. How to link CSS: in the <head> tag, place a <style> tag and write your css in it, that will apply it to the HTML document. If you have an external css file, link to it like this in the <head> tag: <link href = “path/to/stylesheet.css”>
2. You will need to use css selectors to apply styles to paragraphs: p{} will select all paragraphs, select elements of a certain class by using a . followed by the classname like this: .classname{}, and select an element with a given id with the # selector like this: #uniqueid{}
I hope this helps! good luck
0
we cany see the code u need to add the link for it
0
I don't think I understand your question. Can you rephrase the question and write the details in Description?