Il Website

Hero Image

Welcome to Il! We're a modern web project dedicated to providing a user-friendly and visually appealing experience.

Our Mission

We strive to create exceptional web pages with clean design and intuitive navigation. We are committed to delivering high-quality content and a seamless user journey.

``` ```css /* style.css */ body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } header { background-color: #333; color: #fff; padding: 10px 20px; text-align: center; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } nav ul { list-style: none; padding: 0; margin: 0; text-align: center; } nav ul li { display: inline; margin: 0 10px; } nav ul li a { text-decoration: none; color: #f0f0f0; font-weight: bold; } main { padding: 20px; margin: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } /* Hero Section */ #hero { padding: 60px 20px; text-align: center; background: linear-gradient(to right, #e0e0e0, #f0f0f0); color: #333; border-bottom: 1px solid #ccc; border-radius: 8px; } #hero img { width: 300px; max-width: 400px; height: auto; } #hero p { font-size: 24px; margin-bottom: 10px; } #hero h1 { font-size: 36px; margin-bottom: 20px; text-shadow: 2px 2px 4px #000000; } /* Content Section */ #content { padding: 40px 0; background-color: #fff; margin: 20px; } #content h2 { font-size: 24px; margin-bottom: 20px; color: #333; } .featured-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; } .featured-item { width: 300px; padding: 20px; border: 1px solid #ccc; border-radius: 8px; text-align: center; background-color: #f4f4f4; } .featured-item img { max-width: 100%; height: auto; } .featured-item h3 { font-size: 18px; margin-bottom: 10px; } .featured-item p { font-size: 16px; margin-bottom: 10px; } /* Footer */ footer { background-color: #333; color: #fff; text-align: center; padding: 20px; border-bottom: 1px solid #ccc; }