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