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