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