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