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