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