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