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