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