@overstop said in Font of this text:
I like the font of this website and font of the posts, so I was curious.
Ah. Sorry. This forum is specifically about Notepad++, the text editor. So we naturally assumed you were asking about Notepad++ fonts, not the fonts of this website.
You would have to look at your browser settings, as well as the underlying CSS styling, to know for sure. Some browsers (like Chrome) have ways to find out what the actual chosen font/family is, after all stylesheets have been applied.
A quick look at the css shows that normal text uses
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
CSS will search for those fonts on your system, in the order listed.
and code/fixed-width text uses
font-family:Menlo,Monaco,Consolas,"Courier New",monospace;
My guess, if you’re browsing on Windows and your browser isn’t set to override CSS-based font, is that you are seeing Segoe UI for normal text and Consolas for fixed width text.