Use on the webTotal Use [ 6750 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/a97351fe4a08648b29914035a8e97aeb?family=JULES+P.C.+WIMMIN" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/a97351fe4a08648b29914035a8e97aeb?family=JULES+P.C.+WIMMIN);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "JULES P.C. WIMMIN";
src: url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.eot");
src: url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a97351fe4a08648b29914035a8e97aeb.svg#JULES P.C. WIMMIN")format("svg");
}
2CSS rules to specify fonts
font-family: "JULES P.C. WIMMIN";