templates/force_creative_home.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>SARL FORCE CREATIVE</title>
  7. <style>
  8. /* styles.css */
  9. body {
  10. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  11. background-color: #f0f0f0;
  12. color: #333;
  13. }
  14. header {
  15. background-color: #3E629C;
  16. color: white;
  17. padding: 20px 0;
  18. text-align: center;
  19. }
  20. header h1 {
  21. margin: 0;
  22. font-size: 2em;
  23. }
  24. main {
  25. padding: 20px;
  26. background-color: white;
  27. margin: 20px auto;
  28. max-width: 800px;
  29. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  30. }
  31. main p {
  32. line-height: 1.6;
  33. text-align: center;
  34. }
  35. main a {
  36. color: #3E629C;
  37. }
  38. main a:hover {
  39. text-decoration: underline;
  40. }
  41. footer {
  42. background-color: #3E629C;
  43. color: white;
  44. text-align: center;
  45. padding: 10px 0;
  46. position: fixed;
  47. width: 100%;
  48. bottom: 0;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <header>
  54. <h1>Force Créative depuis 14 ans</h1>
  55. </header>
  56. <main>
  57. <p>Spécialiste de la création de progiciels.</p>
  58. <p>Quels exemples de nos réalisation :</p>
  59. <ul>
  60. <li>Netstimmo : estimation immobilière</li>
  61. <li>Safegestion : ERP de commercialisation de matériel médical</li>
  62. <li>Genialissimmo : prospection immobilière</li>
  63. <li>Progress : CRM pour prothésistes dentaires</li>
  64. <li>CreativeOpinion : gestion des échanges en entreprise</li>
  65. <li>Maine : mutualisation de ressources entre communes</li>
  66. <li>Homeland : gestion de formations en ligne</li>
  67. </ul>
  68. <p>Pour toute demande d'information, écrivez-nous à :</p>
  69. <p><a href="mailto:contact@force-creative.com">contact@force-creative.com</a></p>
  70. <p>29 rue de Maubeuge 75009 PARIS </p>
  71. </main>
  72. <footer>
  73. <p>&copy; 2024 FORCE CREATIVE. All rights reserved.</p>
  74. </footer>
  75. </body>
  76. </html>