I'm using markdown in my next.js project:
- I have multiple .md files
- I've installed: remark, remark-HTML, and gray-matter
Now, I'd like to change the font size of the paragraph/ p-tag. I've seen other StackOverflow posts saying that inline-CSS should work in the .md files, but it doesn't in my case. I've tried something like this:
<p style="font-size: 14px">Lorem ipsum dolor</p>
and
<font size="3"> This is my text number 3</font>
Any suggestions?