admin
by on June 19, 2020
1,779 views

Silahkan tonton video Membuat Template Responsive – Footer di atas untuk mengikuti tutorial. Untuk mempermudah dalam pembelajaran, salin source code di bawah ini sesuai tutorial Membuat Template Responsive – Footer yang ada dalam video

Kode 1

</div> <div class="clear"></div> <footer>   <div class="hakcipta">     <div>CregAsia.com &copy; 2020</div>     <div><a href="<?php echo base_url('pages/kebijakan');?>">Kebijakan</a>      | <a href="<?php echo base_url('pages/privasi');?>">Privasi</a>      | <a href="<?php echo base_url('pages/kontak');?>">Kontak</a>      | <a href="<?php echo base_url('pages/tentang');?>">Tentang</a>     </div>   </div> </footer> </div> </body> </html>

 

Kode 2

footer {   width: 100%;   background-color:rgb(242,242,242);   height: 80px;   padding-top: 10px } footer .hakcipta {   width: 100%;   color: white;   text-align: center;   background-color:rgb(65,65,65);   padding: 10px;  box-sizing: border-box; } footer .hakcipta div{   margin-bottom: 10px; } footer .hakcipta a, footer .hakcipta a:visited {   color: white; } footer .hakcipta a:hover {   color: orange; }

Posted in: CodeIgniter 4
Topics: web berita
Be the first person to like this.