contact.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. {% extends 'landing/index.html' %}
  2. {% load static %}
  3. {% block container %}
  4. <div class="row" style="min-height: 500px;">
  5. <div class="container-fluid">
  6. <div class="row">
  7. <div class="col-12 col-md-7" style=" overflow-wrap: break-word;">
  8. <div style="position:relative;overflow:hidden; border-radius: 15px; box-shadow: 1px 1px 5px gray; margin: 30px 10px 40px 10px;">
  9. <iframe src="#"
  10. width="100%" height="400" frameborder="1" allowfullscreen="true" style="position:relative;"></iframe>
  11. </div>
  12. </div>
  13. <div class="col-12 col-md-5" style="overflow-wrap: break-word;">
  14. <div style="margin: 30px 10px 40px 10px;">
  15. <h2>КОНТАКТЫ:</h2>
  16. <h6>&nbsp;</h6>
  17. <h5>Адреса:</h5>
  18. <span style="font-size:18px; font-weight: bold;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae voluptatibus sunt nesciunt corporis fugit rem.</span>
  19. <h2>&nbsp;</h2>
  20. <h5>Телефон:</h5>
  21. <span style="font-size:18px; font-weight: bold;">телефон</span>
  22. <h2>&nbsp;</h2>
  23. <h5>E-mail:</h5>
  24. <span style="font-size:18px; font-weight: bold;"><a href="mailto: " style="text-decoration: none; color: black;">email</a></span>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. {% endblock %}