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