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