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