Emeric Coming Soon and Portfolio Template Documentation

Purchase Now Live Preview

Emeric Coming Soon and Portfolio Template Documentation

by: mix_design
version: 1.0.2
last update: 22.07.2026

01

Introduction

Thank you for choosing Emeric - coming soon and portfolio template. We have prepared detailed documentation to make Emeric customization an easy task for you. If you have any questions that are beyond the scope of this help file, you can email us on support@mixdesign.dev.

We would be very happy if you could rate this item with 5 stars. Your feedback is very important so write us a line ! :)

02

Installation

Follow the steps below to setup your site template:

  1. In order to start working with Emeric unzip the downloaded package and open HTML folder to find all ready-to-use template files. Choose one of the demo *.html files (any ready-to-use demo you like) and rename it to index.html.

  2. Next you'll need to prepare a project for customization. Below is a list of files and folders that are required in the root directory of your project:

    • index.html - your chosen *.html file (renamed already);
    • css folder - stylesheet files;
    • js folder - JavaScript files;
    • fonts folder - icon and lining nums fonts files;
    • img folder for project images and favicon;
    • video folder - project video files;
    • mail.php file for sending e-mails;
    • .htaccess - this file contain rules for files caching on web server;
  3. The other files can be used according to your preferences.

  4. Your project is ready to go! Now you can start adding your texts, images and video to your new awesome website.

  5. After the customization is over, you'll need to upload the project files to your hosting web server using FTP client or cPanel interface in order to use it on your website.

03

Files Structure

After downloading and extracting template package you will find 3 folders:

  • HTML: ready to use HTML template;
  • EmericGULP: if you want to totally customize Emeric, you can use this template;
  • Documentation: this help file.

This section describes HTML folder structure. More about EmericGULP folder structure you can find out in EmericGULP section.

Emeric is one page HTML template. So, mostly you will need one *.html file and supporting *.css, *.js, *.php files with some images. All the directories and files are well organized as it shown on the image bellow.

Files Structure Image
  • all HTML files are located in the root directory;
  • separate folders are created for CSS files, JavaScript files, fonts, images and video;
  • source-files folder contains all expanded CSS files, expanded JavaScript files, plugins and components files;
  • mail.php file for sending e-mails is located in the root directory;
  • .htaccess file is located in the root directory. This file contain rules for files caching on web server.

Demo Pages

Emeric is one page HTML template and comes with 2 homescreen variations and 6 ready-to-use demo pages:

HTML structure

Emeric has a simple and easy to customize structure based on Bootstrap 5.3.5 Grid. Here is a sample page structure:

    
      <!DOCTYPE html>
      <html lang="en" dir="ltr">

      <head>
        Meta tags, Title, Favicon and Icons, Facebook Metadata, CSS, Custom Browser Color
      </head>

      <body>

        <!-- Loader Start -->
        <div class="loader">
          ...
        </div>
        <!-- Loader End -->

        <!-- Gradient Background Start -->
        <div class="fullscreen-bg">
          ...
        </div>
        <!-- Gradient Background End -->

        <!-- Header Start -->
        <header id="header" class="header">
          ...
        </header>
        <!-- Header End -->

        <!-- Menu Start -->
        <nav id="menu" class="menu">
          ...
        </nav>
        <!-- Menu End -->

        <!-- Main Section Start -->
        <section id="main" class="main active">
          ...
        </section>
        <!-- Main Section End -->

        <!-- About Me Section Start -->
        <section id="about" class="inner about">
          ...
        </section>
        <!-- About Me Section End -->

        <!-- Portfolio Section Start -->
        <section id="works" class="inner works">
          ...
        </section>
        <!-- Portfolio Section End -->

        <!-- Contact Section Start -->
        <section id="contact" class="inner contact">
          ...
        </section>
        <!-- Contact Section End -->

        <!-- Notify Popup Start -->
        <div id="notify" class="popup notify">
          ...
        </div>
        <!-- Notify Popup End -->

        <!-- Root element of PhotoSwipe. Must have class pswp. -->
        <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
          ...
        </div>

        <script src="js/libs.min.js"></script>
        <script src="js/gallery-init.js"></script>
        <script src="js/custom.js"></script>
        
      </body>

      </html>
    
  

CSS Files

Emeric template CSS files have a well-organized structure and a table of contents, as you can see on image below:

CSS Structure Image

All CSS files are placed in css folder and have to be included in the <head> tag. Emeric uses uncompressed CSS files. If you want to improve Google PageSpeed Insights performance, you can use minificated files from source-files → emeric-css-min-files.

    
      <!-- Template Styles Start-->
      <link rel="stylesheet" type="text/css" href="css/loaders/loader.css">
      <link rel="stylesheet" type="text/css" href="css/plugins.css">
      <link rel="stylesheet" type="text/css" href="css/main.css">
      <!-- Template Styles End-->
    
  

CSS files that have to be included in chosen .html file:

  • loader.css
  • plugins.css
  • main.css

If you want to customize CSS styles, We recommend to create your own custom.css file and include it to Template Styles section of the HTML file. This solution will help you in future updates.

JavaScript Libraries

All JavaScript files are placed in js folder and have to be included before the </body> tag.

  • libs.min.js - all JavaScript libraries that are necessary for Emeric proper work, are compiled in this file;
  • gallery-init.js - for photoswipe gallery initialization;
  • custom.js - includes other scripts calls and settings;
    
      <!-- Load Scripts Start-->
      <script src="js/libs.min.js"></script>
      <script src="js/gallery-init.js"></script>
      <script src="js/custom.js"></script>
      <!-- Load Scripts End-->
    
  

We used minificated libs.min.js file to add all necessary JavaScript libraries to this template. The file contains:

All this uncompressed files you can find in the source-files folder.

04

Fonts

In the Emeric template we used Manrope and Fontawesome 6.5.1 Free Iconic Font.

Google Fonts

Emeric uses

  • Manrope font for titles, basic text content and additional text.

The font is embedded in the main.css file:

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

You can customize this font or embed another fonts for your project with Google Fonts. In this case, you'll also need to change the fonts in the css files per your fonts used.

Fontawesome free

Emeric uses free version of FontAwesome 6.7.2 iconic font. You can use fontawesome.com/icons page to easily find the icon you want to use. Solid, regular and brands icons are already compiled in the plugins.css file and ready for use.

To change icons, just change the class names: fa-solid fa-heart, fa-brands fa-instagram, fa-regular fa-address-book.

<li>
    <a href="https://www.facebook.com/" target="_blank">
        <i class="fa-brands fa-facebook"></i>
    </a>
</li>

More information about FontAwesome you can find on official documentation website - FontAwesome Docs.

05

Favicon and Apple touch icons

Emeric covers almost all platforms design requirements for favicon and icons:

Classic favicon:

      
        <link rel="icon" href="img/favicon/favicon.ico" sizes="any">
      
    

Android Web App Manifest & Apple Touch Icon:

      
        <link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
        <link rel="manifest" href="img/favicon/manifest.webmanifest">
      
    

Universal SVG Icon for All Sizes ang Dark & Light Browser Color Themes:

      
        <link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
      
    

Facebook Metadata:

      
        <!-- Facebook Metadata Start -->
        <meta property="og:image:height" content="1200">
        <meta property="og:image:width" content="1200">
        <meta property="og:title" content="Emeric - Coming Soon and Portfolio Template">
        <meta property="og:description" content="Emeric - awesome coming soon and portfolio template to kick-start your project">
        <meta property="og:url" content="http://mixdesign.dev/themeforest/emeric/">
        <meta property="og:image" content="http://mixdesign.dev/themeforest/emeric/favicon/og-image.jpg">
        <!-- Facebook Metadata End -->
      
    

You can use Emeric favicon as an example or generate new one with Favicon Generator or any other favicon generator by your needs.

06

Customization

Emeric template comes with easy-to-customize page elements. You can choose from 6 ready-to-use demo files, 3 headline versions, various backgrounds and much more.

Preloader

Loader will hide contents of your site until it's fully loaded. If you want to customize or remove loader, find this code in *.html file:

<!-- Loader Start -->
<div class="loader">
  <div class="loader">
    <div class="loader__content">
      <div class="loader__logo">
        <img src="img/logo.svg" alt="Emeric - Coming Soon and Portfolio Template">
      </div>
    </div>
  </div>
</div>
<!-- Loader End -->

Loader styles are included in the <head> tag:

<!-- Template Styles Start-->
<link rel="stylesheet" type="text/css" href="css/loaders/loader.css">
...
<!-- Template Styles End-->

Images

All images used in the Emeric template live demo are just for preview purpose only and they are not included in main download files. You easily can find all images on unsplash.com or pexels.com. We are using placeholders from dummyimage.com instead of real images. You can easily replace placeholder URL with a path to your image like img/yourimage.jpg.

All tmplate background images you can replace in the main.css file:

/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
...
.media-image-1 {
  background-image: url("https://dummyimage.com/1000x1500/4d4d4d/636363");
}
...
/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/

Section name rotating objects

Emeric template is provided with rotating SVG animated objects as a sections names. You can change content and style for this objects in the SVG file. The SVG files are located in the img → svg folder:

  • section-name-about.svg
  • section-name-works.svg
  • section-name-contact.svg
Objects Image

Manrope font is already included in SVG files, so you can open any file and change the text and font size:

    
      <text class="text">
      <textPath class="text" href="#myPath">About me * about me * about me * </textPath>
    </text>
    
  
    
      .text {
        fill: #131417;
        font-family: 'manropemedium';
        text-transform: uppercase;
        font-size: 18.3px;
        font-weight: 500;
        letter-spacing: normal;
      }
    
  

Headlines

Emeric template comes with 3 headline types with various sliders, image and video backgrounds. Backgrouds settings you can find in the Plugins and Animated Backgrounds sections of this file.

1. Personal portfolio headline with Download CV button. Slider settings you can find in Swiper Slider section of this file. Kenburns background settings are in Animated Backgrounds section of this file.

Layout Image

Replace this headline demo text with your own:

<!-- Headline Start -->
<div id="headline" class="headline">
  <h1 class="headline__title">Digital designer and illustrator based in Odesa</h1>
  <div class="headline__btnholder d-flex">
    <a href="#0" id="download-cv" class="btn-bottom download">
      <span class="circle">
        <i class="circle__icon">
          <svg xmlns="http://www.w3.org/2000/svg" width="25px" height="25px" viewBox="0 0 25 25">
            <path fill="#393C44" d="M25,4.8V24v1h-1H3.8v-1h19.5L0,0.7L0.7,0L24,23.3V4.8H25z"/>
          </svg>
        </i>
      </span>
      <span class="caption">Download CV</span>
   </a>
  </div>
</div>
<!-- Headline End -->

2. Coming soon headline with countdown. Video background settings you can find in Animated Backgrounds sections of this file.

Layout Image

Replace this headline demo text with your own:

<!-- Headline Start -->
<div id="headline" class="headline">
  <h1 class="headline__title">See you soon.<br>We'll be back in</h1>
  <div class="headline__countdown">
    <div id="countdownLine" class="countdown-line"></div>
  </div>
  <div class="headline__btnholder d-flex">
    <a href="#0" id="menu-trigger-headline" class="btn-bottom more">
      ...
    </a>
  </div>
</div>
<!-- Headline End -->

3. Agency launch headline with round countdown. Slider settings you can find in Swiper Slider section of this file.

Layout Image

Replace this headline demo text with your own:

<!-- Headline Start -->
<div id="headline" class="headline">
  <h1 class="headline__title">Stay tuned for something awesome</h1>
  <div class="headline__btnholder d-flex">
    <a href="https://vimeo.com/65036292" id="showreel-trigger" class="btn-bottom play">
      ...
    </a>
  </div>
</div>
<!-- Headline End -->

07

Plugins

Countdown

Emeric template comes with days only countdown, which is used on headline and image background:

  • Headline countdown #countdown Countdown Image
  • Image background countdown #countdown Countdown Image

Emeric template comes with KBW Countdown Plugin. This plugin can be tricky to set up, but it is very flexible and has a lot of features.

For more details you can see documentation reference page: keith-wood.name/countdownRef.html or see a minimal page with basic settings: keith-wood.name/countdownBasics.html. In our case we are using UTCDate function. (You can also find this function in documentation reference page):

$.countdown.UTCDate(tz, year, month, day, hours, mins, secs, ms)

  • tz - timezone offset, either in hours or minutes, from GMT, for example, Brisbane, Australia, would be +10 or +600;
  • year - local year;
  • month - local month (0 to 11);
  • day - local day in the month;
  • hours - local hour;
  • mins - local minute;
  • secs - local second;
  • ms - local millisecond.

So here: countdown.UTCDate(10, 2026, 12, 22)

  • 10 - timezone;
  • 2026 - local year;
  • 12 - local month;
  • 22 - local day.

Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:

  • libs.min.js
  • custom.js
    
      <!-- Load Scripts Start-->
      <script src="js/libs.min.js"></script>
      ...
      <script src="js/custom.js"></script>
      ...
      <!-- Load Scripts End-->
    
  

Setting your own date for countdown script can be done in custom.js file in js folder:

    
      $('#countdown').countdown({until: $.countdown.UTCDate(+10, 2026, 12, 27), format: 'D'});
      $('#countdownLine').countdown({until: $.countdown.UTCDate(+10, 2026, 12, 27), format: 'D'});
    
  

Visit KBW Countdown site for more details and settings - keith-wood.name/countdown.html

Swiper Slider

Emeric uses newest Swiper Slider Plugin for:

Homescreen layout slider. It's a half-screen slider with slide effect:

Swiper Slider Image
    
      <!-- Main Section Split Swiper Slider Start -->
      <!-- Slider main container -->
      <div class="swiper">
        <!-- Additional required wrapper -->
        <div class="swiper-wrapper">
          <!-- Slides -->
          <div class="swiper-slide split-slide split-slide-1"></div>
          <div class="swiper-slide split-slide split-slide-2"></div>
          <div class="swiper-slide split-slide split-slide-3"></div>
        </div>
        <!-- Pagination -->
        <div class="swiper-pagination split-slider-pagination-emeric d-flex align-items-center justify-content-center"></div>
        <!-- Navigation buttons -->
        <div class="swiper-button-prev split-slider-btn-emeric split-slider-btn-emeric-prev">
          <span class="circle"></span>
          <i class="fa-solid fa-chevron-left"></i>
        </div>
        <div class="swiper-button-next split-slider-btn-emeric split-slider-btn-emeric-next">
          <span class="circle"></span>
          <i class="fa-solid fa-chevron-right"></i>
        </div>
      </div>
      <!-- Main Section Split Swiper Slider End -->
    
  

All slides background images you can replace in the main.css file:

    
      /* ------------------------------------------------*/
      /* Template Backgrounds Start */
      /* ------------------------------------------------*/
      ...
      .split-slide-1 {
        background-image: url("https://dummyimage.com/1000x1500/4d4d4d/636363");
      }
      ...
      /* ------------------------------------------------*/
      /* Template Backgrounds End */
      /* ------------------------------------------------*/
    
  

Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:

  • libs.min.js
  • custom.js
    
      <!-- Load Scripts Start -->
      <script src="js/libs.min.js"></script>
      ...
      <script src="js/custom.js"></script>
      <!-- Load Scripts End -->
    
  

If you want to change this slider settings, find the custom.js file in js folder and make the necessary changes to the swiper init lines:

    
      var swiper = new Swiper('.swiper', {
        // Optional parameters
        grabCursor: true,
        effect: "creative",
        creativeEffect: {
          prev: {
            translate: ["-20%", 0, -1],
          },
          next: {
            translate: ["100%", 0, 0],
          },
        },
        parallax: true,
        speed: 1300,
        loop: true,
        autoplay: {
          delay: 3000,
          disableOnInteraction: false,
        },
      
        ...
    
      });
    
  

More information about Swiper settings you can find in the official documentation - swiperjs.com/get-started

Skillbars

Emeric uses jQuery CSS Skills Bar Plugin to show he skill set.

Skillbars Image

You can change percent parameter in the HTML file:

<!-- skillbar single item -->
<div class="show-skillbar">
  <div class="skillbar light" data-percent="96">
    <span class="skillbar-title light">Figma</span>
    <p class="skillbar-bar light" style="width: 96%;"></p>
    <span class="skill-bar-percent light">96%</span>
  </div>
</div>

All other parameters you can change in custom.js file:

$('.skillbar').skillBars({
  from: 0,
  speed: 4000,
  interval: 100,
  decimals: 0
});

See jQuery CSS Skills Bar Plugin page for more settings.

Magnific Popup

Emeric uses Magnific Popup for video showreel in the Main and About sections of the template.

Magnific Popup Image

You can change a link to the video in your *.html file:

<a href="https://vimeo.com/65036292" id="inner-video-trigger" class="inner-video-trigger">
  <span class="btn-icon-anim">
    <i>
      <svg xmlns="http://www.w3.org/2000/svg" width="30px" height="35px" viewBox="0 0 30 35">
        <path fill="#494D56" d="M1.1,1.9l13.5,7.8l13.5,7.8l-13.5,7.8L1.1,33.1V17.5V1.9 M0.1,0.2v17.3v17.3l15-8.7l15-8.7l-15-8.7L0.1,0.2
          L0.1,0.2z"/>
      </svg>
    </i>
  </span>
</a>

All popup parameters you can change in custom.js file:

$('#inner-video-trigger').magnificPopup({
  type: 'iframe',
  mainClass: 'mfp-fade',
  removalDelay: 160,
  preloader: false,
  fixedContentPos: false,
  callbacks: {
    beforeOpen: function() { $('body').addClass('overflow-hidden'); },
    close: function() { $('body').removeClass('overflow-hidden'); }
  }
});

$('#showreel-trigger').magnificPopup({
  type: 'iframe',
  mainClass: 'mfp-fade',
  removalDelay: 160,
  preloader: false,
  fixedContentPos: false,
  callbacks: {
    beforeOpen: function() { $('body').addClass('overflow-hidden'); },
    close: function() { $('body').removeClass('overflow-hidden'); }
  }
});

See dimsemenov.com/plugins/magnific-popup page for more settings.

08

Animated Backgrounds

All backgrounds CSS styles are compiled in plugins.css file so you don't need to add any CSS files.

Ken Burns

To provide this effect we use Vegas jQuery Plugin . Make sure you have <div id="bgndKenburns"> in the *.html file:

<!-- Background Effect Start -->
<div id="bgndKenburns"></div>
<!-- Background Effect End -->

Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:

  • libs.min.js
  • custom.js
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
<!-- Load Scripts End-->

To replace or add images to the slideshow, find the custom.js file in js folder and make the necessary changes to the slides array:

$('#bgndKenburns').vegas({
    ...
    slides: [
        { src: '../img/example-slide-1.jpg' },
        { src: '../img/example-slide-2.jpg' },
        { src: '../img/example-slide-3.jpg' }
    ],
    ...
});

More information about Vegas settings you can find in the official documentation - vegas.jaysalvat.com/documentation

HTML5 Video

To provide self-hosted (local) video background feature we use HTML5 <video> tag. Aso we used <source> property with 3 video formats to maximize browser support:

<!-- Background Effect Start -->
<div class="video-background">
  <video id="main-video" preload="auto" autoplay="autoplay" loop="loop" muted="muted" poster="https://dummyimage.com/1000x1500/4d4d4d/636363">
    <source type="video/mp4" src="video/video.mp4">
    <source type="video/webm" src="video/video.webm">
    <source type="video/ogv" src="video/video.ogv">
  </video>
</div>
<!-- Background Effect End -->

You can use online service to convert your video: Online Uniconverter or any other similar applicaton.

Please note, if you'll not use muted property of the <video> tag, your video will not start automatically in some browsers.

09

Forms

Emeric template is provided with 2 form types:

Mailchimp Subscription Form

This active subscribe form will save emails to MailChimp list.

Mailchimp Form Image
<!-- Notify Contact Form Start-->
<form class="form notify-form form-dark">
  <input class="margin-l" type="email" placeholder="Your Email" required>
  <button class="btn btn-l" type="submit">
    <span class="btn__background dark"></span>
    <span class="btn__text light">
      <em class="btn-title">Submit</em>
      <em class="btn-hover">Submit</em>
    </span>
  </button>
</form>
<!-- Notify Contact Form End-->

JavaScript files that have to be included:

  • libs.min.js
  • custom.js
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
<!-- Load Scripts End-->

Follow these steps to get Mailchimp list URL:

  1. Login or create an account on mailchimp.com and go to the Audience section.Mailchimp Instruction Image
  2. Choose "Signup Forms" from the list:Mailchimp Instruction Image
  3. Find "Embedded forms" and click "Select":Mailchimp Instruction Image
  4. The form, you'll see on the next screen fits for our "Notify Me" form, so click "Continue":Mailchimp Instruction Image
  5. Now the form is ready and you need to copy action URL from the form - highlighted in pink:Mailchimp Instruction Image
  6. Add https:// if it is not included with MailChimp list URL.

Open custom.js file from js folder. Just replace our Mailchimp form action URL with your Mailchimp list URL:

$('.notify-form').ajaxChimp({
    callback: mailchimpCallback,
    // Replace this Mailchimp form action URL with your Mailchimp list URL
    url: 'https://besaba.us10.list-manage.com/subscribe/post?u=e8d650c0df90e716c22ae4778&id=YOUR_LIST_ID'
});

Done! Now you can save emails to your MailChimp Audience List!

Contact Form

Emeric has 1 integrated ajax contact form.

Contact form:

Emeric Contact Form Image

All these forms have the same settings. It's very easy to set up this forms to receive feedback on your e-mail:

  1. First of all you need to make sure that mail.php file is added to the root directory of your project.
  2. Then find <form> tag with id="contact-form" in the *.html file.
  3. This form contains 3 hidden required inputs. Replace data in the value parameter of these hidden fields:
    <!-- Contact Form Start -->
    <form class="form form-light contact-form" id="contact-form">
      <!-- Hidden Required Fields -->
      <input type="hidden" name="project_name" value="Emeric - Coming Soon and Portfolio Template">
      <input type="hidden" name="admin_email" value="support@mixdesign.dev">
      <input type="hidden" name="form_subject" value="Contact Form Message">
      <!-- END Hidden Required Fields-->
      ...
    </form>
    <!-- Contact Form End  -->
  4. Check JavaScript files connection.

JavaScript files that have to be included:

  • libs.min.js
  • custom.js
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End-->

Done! Now you can receive messages on your e-mail.

10

EmericGULP

If you want to totally customize Emeric, you can use our all-inclusive EmericGULP template. EmericGULP includes Bootstrap 5 Grid, Gulp, Sass, Bourbon, Autoprefixer, Browsersync, Clean-CSS, CSS Beautify, Uglify, and other packages for efficient and comfortable work.

EmericGULP requires node, npm and git.

Getting started

Install Node Modules: npm i
Run EmericGULP: gulp

Project structure

  • The source code is located in the app directory;
  • SASS files are located in the sass directory;
  • The dist folder is a production folder. It contains ready project with optimized HTML, CSS, JS and images.

Gulp tasks

gulp: run default gulp task for web development;
build: build project to dist folder;
clearcache: clear all gulp cache.

If you have any questions about EmericGULP, you can email us on support@mixdesign.dev.

11

Changelog

Version 1.0.0 14.09.2023

  • Initial release

Version 1.0.1 15.01.2024

  • Jquery updated to 3.7.1;
  • Bootstrap updated to 5.3.2;
  • Fontawesome updated to 6.5.1;
  • Swiper updated to 11.0.5;
  • Documentation update.

Version 1.0.2 11.04.2025

  • GULP updated to 5.0.0;
  • BrowserSync updated to 3.0.4;
  • SASS updated to 1.86.3;
  • Bootstrap updated to 5.3.5;
  • Fontawesome updated to 6.7.2;
  • Swiper updated to 11.2.6;
  • Documentation update.

12

Credits

CSS and JavaScript files

Icons and images