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