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