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