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