Site structure

Kyma is an one page HTML template which has the following code structure:

<html>
<head>[...]</head>
<body>
  <div id="page_wrapper">
    <header>[...]</header>
    ...
    sections
    ...
    <footer>[...]</footer>
  </div>
</body>
</html>

This example doesn’t necessarily mean it has to be this exact pattern, however it’s the most commonly used.

 

Other mentionable html markups:

To Top button

Classic go to top button. Just make sure not to change the id as it holds the styling but also js click event.

<a href="#" id="totop"></a>