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