Answers for "footer tag in html with example"

2

html should the footer be inside body

<!-- The <footer> tag should be used within the <body> tag. -->
<body>
<footer>
</footer>
</body>
Posted by: Guest on December-08-2020
0

membuat footer html

<div id="container">
    <div id="header">
        <h1>Layout Footer Menempel Ke Bawah</h1>
    </div>
    <div id="content">
        <!--Bisa diisi teks lorem ipsum dibagian ini-->
    </div>
    <div id="footer">
        Copyright © 2014
        Designed by ..............
    </div>
</div>
Posted by: Guest on May-23-2020

Browse Popular Code Answers by Language