Get started with skeleton CDN
MIT licensed
Skeleton is a free, lightweight, and responsive front-end framework for building static websites.
Tags:- css
- boilerplate
- grid
- responsive
Stable version
Copied!
How to start using skeleton CDN
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.cdnhub.io/skeleton/2.0.4/skeleton.min.css">
<title>Get started with skeleton CDN - cdnhub.io</title>
</head>
<body>
<div class="container">
<h1>Welcome to Skeleton</h1>
<p>This is a simple example of using Skeleton CSS framework.</p>
<hr>
<div class="row">
<div class="column-1-2">
<h2>Column 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at libero id mauris ullamcorper tempor et sit amet tellus.</p>
</div>
<div class="column-1-2">
<h2>Column 2</h2>
<p>Phasellus id velit nulla. Donec bibendum scelerisque ante vitae magna. Cras porttitor metus justo, ut fringilla urna bibendum eget.</p>
</div>
</div>
</div>
</body>
</html>
Copied!
Copied!