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