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