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