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