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