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