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