Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 747 Bytes

set-up.md

File metadata and controls

36 lines (26 loc) · 747 Bytes
description
Set-up your first Project !!! 🎉

Set Up

Set-Up using CDN

To set up using the CDN file include

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rudransh61/NextGenCSS-/src/index.css" media="print"
    onload="this.media='all'">

This line in your HTML file in <head> tag

Demo Code for Quick Start 👇

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rudransh61/NextGenCSS-/src/index.css" media="print"onload="this.media='all'">
</head>
<body>
    <h1>Namaste 🙏</h1>
</body>
</html>