for Logitech Web Developer contest powered by Weero. To View Live Website: Click Here
- Designer : Nazmus Sakib
- Developer : Nazmus Sakib
- Github : nazmus767921
- LinkedIn : nazmus767921
- Gmail: nazmus767921@gmail.com
- Get Cursive style
- *** at the beginning of the sentence makes the whole sentence or line cursive.
- ** at the end of any word makes that word only cursive.
- **# at the end of any word makes that word only colored cursive.
Add this class to index.css file
.cursive {
font-family: "YourDesiredFontFamily", cursive;
}
Then use it anywhere like this
import { getCursiveStyle } from "./src/utils/helpers/getCursiveStyle.jsx";
const myText = "This is my word*** which I want want to get styled cursive"
<h2>{getCursiveStyle(myText)}</h2>;