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