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