Content consists of page banner, page’s main body and social block with footer. HTML code of Content container as shown below:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!-- Main Content --> <section class="content-wrap"> <!-- Banner --> <div class="youplay-banner banner-top youplay-banner-parallax"> ... </div> <!-- /Banner --> <div class="container youplay-content"> ... </div> <!-- Footer --> <footer> <div class="wrapper"> <!-- Social Buttons --> <div class="social"> ... </div> <!-- /Social Buttons --> <!-- Copyright --> <div class="copyright"> ... </div> <!-- /Copyright --> </div> </footer> <!-- /Footer --> </section> <!-- /Main Content --> |