Get started with 960gs CDN

(GPL OR MIT) licensed

The 960.gs library offers a 960-pixel fixed-width grid system for web design.

Tags:
  • 960
  • 960gs
  • grid system

Stable version

Copied!

How to start using 960gs CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with 960gs CDN - cdnhub.io</title>
  <link rel="stylesheet" href="https://cdn.cdnhub.io/960gs/0/960.min.css">
  <style>
    /* Custom styles for your project */
    .container { width: 960px; margin: 0 auto; }
  </style>
</head>
<body>
  <div class="container">
    <div class="grid_12">
      <h1>Welcome to the 960.gs Grid System!</h1>
      <p>This is an example of using the 960.gs grid system with the provided CDN link.</p>
    </div>

    <div class="grid_6 alpha">
      <h2>Grid 6 Alpha</h2>
      <p>This grid is 6 columns wide and has an alpha offset, making it the first grid in a new row.</p>
    </div>

    <div class="grid_6 omega">
      <h2>Grid 6 Omega</h2>
      <p>This grid is also 6 columns wide and has an omega offset, making it the last grid in a row.</p>
    </div>

    <div class="clear"></div>
  </div>
</body>
</html>
Copied!
Copied!

All versions