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