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