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