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