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