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