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