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