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