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