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