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