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