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