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