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