Start developing your first websites with Creative Framework. Start thinking about which of the provided methods you
want to integrate our framework into your website. In this section you will find everything you need to include the framework.
Table of Content
Download
Creative Framework comes in two different file formats. Which of the user's preferences is left to him/her. Below is a short text
describing the formats. To start with Creative Framework, you only need to download one of the two versions.
Creative Framework
This is the standard CSS version of our framework. It is downloaded in a minified and a non minimized version.
This option should be used if no Sass prior knowledge is available.
Creative Sass
This is the sass version of our frameworks which contains all sass source files
and can be changed. This option requires a Sass compiler. Should only be used with prior knowledge.
CDN
You can also find Creative Framework on a CDN. Through the tag below, you integrate our framework over the web.
The stylesheet is already compiled and minified.
Source Code
The Creative Framework source code contains a zip file which includes the folder structure listed below.
It includes the compiled files as well as the sass files and javascript files.
With the tag below you can easily integrate the downloaded CSS version into your website. Caution, depending on the directory
in which the Creative Framework CSS file is located, the path must be changed. In the example below, the CSS file is located
in the same directory as the HTML file that is linked to it. With ' / ' you can
change deeper into directories and with ' ../ ' you can change from a directory.
Sass compiling
This area is only relevant if you have chosen the Sass version of the framework. Instead of a large CSS file, a folder with many
.sass files is downloaded that has the folder structure listed below. Each Sass file contains styles for different components.
A web page is initially presented to the browser as a simple text formatted with the markup language HTML.
While the browser receives the code via the network, it processes it from top to bottom. This task is performed by the so-called parser.
The parser converts the HTML code into an object structure, which is then stored in the working memory.
This object structure consists of nested nodes, such as element nodes, attribute nodes, and text nodes arranged in a tree structure.
The browser uses this object structure for all further operations, not the HTML source code that is usually used.