IS-UI

Another mobile-first front-end CSS framework.

Vision

IS-UI is another mobile-first front-end CSS framework. The sole purpose of this is literally to be another alternative, to be another solution. With night you have day. With water you have land. With rice you have beans. All are good, neither are evil, both are useful. Let this be another resource for developing the web even furthur.

A Basic Template

Like any useful web tool, there needs to be good documentation and a good template. Below is a simple template which can be used in many circumstances.

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>Template</title>
	<link rel="stylesheet" type="text/css" href="build/css/is-ui.min.css">
	<script type="text/javascript" src='build/include/jquery.js'></script>
	<script type="text/javascript" src='build/js/is-ui.min.js'></script>
</head>
<body>
	<div class="container">
		<div class="row">
			<div class="col-12 pit lg">
				<h1 class="center">IS-UI Template</h1>
			</div>
		</div>
	</div>
</body>
</html>