Site structure

Medlife HTML template is divided in 19 pages.

The template use the following code structure:

<html>
<head>[...]</head>
<body>
    <header>[...]</header>
    ...
    sections
    ...
    <footer>[...]</footer>
</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 goes to top button. Just make sure not to change the id as it holds the styling but also js click event.

<div class="back-to-top clearfix display">
 <a href="#">
    <span><i class="fa fa-chevron-up" aria-hidden="true"></i> Top</span>
  </a> </div>