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