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