@@ -59,9 +59,9 @@ There are many inconsistencies between browsers. Like Firefox 3 has a margin on
5959 ```
60604. Star this repository, if you like the project! It means a lot to the development team, Those stars a boosting happiness for our team
6161
62- 5. How about reading a guide for best performance? Here's the link to [optimizing reseter.css for production](#-optimizing-reseter.css-for-production )
62+ 5. How about reading a guide for best performance? Here's the link to [optimizing reseter.css for production](#-optimize )
6363
64- 6. Lastly you can view our wiki for best practices and performance guides
64+ 6. Lastly you can view [ our wiki for best practices and performance guides](https://github.com/krishdevdb/reseter.css/wiki/Performance)
6565
66667. 🥳 All Set Now
6767
@@ -194,17 +194,37 @@ Coming Soon
194194
195195<br >
196196
197- ## 📞 We're Ready To Support
197+ ## 🚅 Optimize
198+
199+ > ** Note** all of these guidelines are for static websites, frameworks like react have their own guide (please refer them)
200+
201+ - Never import reseter.css via css, though this a option, it is not recommended for website loading, rather use html link tags
202+
203+ ``` html
204+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/reseter.css" >
205+ ```
206+
207+ - Use this easy loading trick to make your life a lot easier
198208
199- <!--
200- - [x] Discord server
201- - [x] GitHub discussions
202- - [x] Stackoverflow
203- - [x] Bug handler
204- - [x] Mail Support
205- -->
209+ ``` html
210+ <link rel =" preload" as =" style" href =" https://cdn.jsdelivr.net/npm/reseter.css" onload =" this.rel='stylesheet';this.onload=null" >
211+
212+ <noscript >
213+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/reseter.css" >
214+ </noscript >
215+ ```
216+
217+ - Find more at [ our wiki] ( https://github.com/krishdevdb/reseter.css/wiki/Performance )
218+
219+ <br >
220+
221+ ## 📞 We're Ready To Support
206222
207- Support guidelines coming soon!
223+ - [ ] Discord server (Coming Soon)
224+ - [x] [ GitHub discussions] ( https://github.com/krishdevdb/reseter.css/discussions )
225+ - [x] [ Stackoverflow] ( https://stackoverflow.com/questions/ask )
226+ - [x] [ Bug handler] ( https://github.com/krishdevdb/reseter.css/issues )
227+ - [x] [ Mail Support
] ( mailto:[email protected] ) 208228
209229<br >
210230
0 commit comments