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