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