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