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