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