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