Use on the webTotal Use [ 4122 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b9849e2042ad7ccd48e3ba0dc790ceec?family=Jazz+Ragtime+URW+W01+Regular" 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/b9849e2042ad7ccd48e3ba0dc790ceec?family=Jazz+Ragtime+URW+W01+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Jazz Ragtime URW W01 Regular";
src: url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.eot");
src: url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b9849e2042ad7ccd48e3ba0dc790ceec.svg#Jazz Ragtime URW W01 Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Jazz Ragtime URW W01 Regular";