Get Started With TechniQuilt

TechniQuilt is a robust and comprehensive frontend toolkit. With TechniQuilt, you can swiftly create a wide range of projects, whether it's a prototype or a production-ready application. Its extensive set of features empowers you to bring your ideas to life with ease.


Starting To Code

Get started by adding TechniQuilt cdn to your webpage or by creating a webpage using npm.

CDN
<link href="https://cdn.techniquilt.icns.in/techniquilt.css" rel="stylesheet">

Example Of Code Block

create a new index.html file in your web app and include all meta tags for proper responsive behavior


  <!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>TechniQuilt demo</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
  </body>
</html>