Quickstart

HTML Structure

Enfty template is based on Bootstrap Framework (http://getbootstrap.com/) Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web.

Below is sample coding structure:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <title>Enfty</title>
    <link rel="stylesheet" href="./bootstrap/css/bootstrap.css">
    <link rel="stylesheet" href="./css/style.css">
    <link rel="stylesheet" href="./css/responsive.css">
    <link rel="stylesheet" href="./css/button.css">
    <link rel="stylesheet" href="./css/gsap.css">
    <link rel="icon" type="image/svg" href="./images/favicon.svg">
</head>
<body class="theme-dark loading">
    ...
</body>
</html>

Last updated