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