css - HTML simple layout -


i'm doing store site , need want, see photo i've attached:

img

i not know how can add list , buttons there, @ code:

<div class="modal-body">     <a><img src="images/******.png" alt="img"><a> </div> 

thanks =)

<div class="modal-box"> <div class="modal-header">     <h2>title</h2>     <button class="modal-close">x</button> </div> <div class="modal-body">     <div class="img-container">         <a href="#">             <img src="images/****" alt="img" />         </a>     </div>     <div class="text-container">         <ul>             <li>text</li>             <li>text</li>             <li>text</li>             <li>text</li>         </ul>         <div class="button-group">             <button class="btn">button 1</button>             <button class="btn">button 2</button>         </div>     </div> </div> <div class="modal-footer">     <button class="fl-right btn-close">fechar</button> </div> 


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -