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