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