Responsive Banner

by Ali Khaled

HTML

<!-- Simple Responsive Banner -->
<!-- Note: no WIDTH or HEIGHT attributes on IMG element -->
<img class="resp-banner" src="https://www.oxfordauction.com/image5.png"
<!-- ignore HR -->

<!-- Max-width Responsive Banner -->
<!-- Note: add max-width css definition with STYLE attribute -->

<style>

.resp-banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

</style>