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