Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Applying Comic Sans Ms font style

People also ask

Is Comic Sans a MS font?

Comic Sans MS is the groovy script font which was first supplied with the Windows 95 Plus! pack. Although it might be seen as a novelty typeface, which is great for titles, it's also extremely readable on-screen at small sizes, making it a useful text face. A note from Vincent Connare, Comic Sans' designer.

How do I use Comic Sans MS in HTML?

You need to use quote marks. font-family: "Comic Sans MS", cursive, sans-serif; Although you really really shouldn't use comic sans. The font has massive stigma attached to it's use; it's not seen as professional at all.

What font goes with Comic Sans MS?

Ubuntu. Ubuntu, a sans-serif font, pairs well as a body copy font with Comic Sans. Similar in weight, Ubuntu is a clean sans serif and modern typeface.


The font may exist with different names, and not at all on some systems, so you need to use different variations and fallback to get the closest possible look on all systems:

font-family: "Comic Sans MS", "Comic Sans", cursive;

Be careful what you use this font for, though. Many consider it as ugly and overused, so it should not be use for something that should look professional.


You need to use quote marks.

font-family: "Comic Sans MS", cursive, sans-serif;

Although you really really shouldn't use comic sans. The font has massive stigma attached to it's use; it's not seen as professional at all.


The httpd dæmon on OpenBSD uses the following stylesheet for all of its error messages, which presumably covers all the Comic Sans variations on non-Windows systems:

http://openbsd.su/src/usr.sbin/httpd/server_http.c#server_abort_http

810    style = "body { background-color: white; color: black; font-family: "
811        "'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif; }\n"
812        "hr { border: 0; border-bottom: 1px dashed; }\n";

E.g., try this:

font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;