Skip to content

rckryd/eause

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Eause CSS Framework

Eause is a lightweight CSS Framework.

Installation

use npm to install the Eause package

npm install eause --save

Code requirements

Use the HTML5 doctype

<!DOCTYPE html>

Add the responsive viewport meta tag

<meta name="viewport" content="width=device-width, initial-scale=1">

Starter template

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Hello Eause!</title>
    <link rel="stylesheet" href="https://unpkg.com/eause/dist/eause.min.css">
  </head>
  <body>
  <section >
    <div class="container">
      <h1>
        Hello World
      </h1>
      <p>
        My first website with <strong>Eause</strong>!
      </p>
    </div>
  </section>
  </body>
</html>

Website

eause.rckryd.com