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