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