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