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