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