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