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