Welcome to Revel Travel

Find your perfect holiday and revel in the experience!

Our Featured Tours

Tour 1

Tour to Italy

Explore the historic cities of Italy with our exclusive tour package.

Tour 2

Beach Getaway

Relax on the beautiful beaches with our tropical holiday packages.

// Example tour data (this would normally come from a database) let allTours = [ { title: "Tour to Italy", description: "Explore historic cities of Italy." }, { title: "Beach Getaway", description: "Relax on tropical beaches." }, { title: "Mountain Adventure", description: "Hike the Alps with guided tours." } ]; $w.onReady(function () { loadTours(allTours); $w('#searchButton').onClick(() => { const query = $w('#searchInput').value.toLowerCase(); const filtered = allTours.filter(tour => tour.title.toLowerCase().includes(query) || tour.description.toLowerCase().includes(query) ); loadTours(filtered); }); }); function loadTours(tourList) { $w('#tourRepeater').data = tourList; $w('#tourRepeater').onItemReady(($item, itemData) => { $item('#title').text = itemData.title; $item('#description').text = itemData.description; }); } Rentals | Revel /* Reset basic styling */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body Styling */ body { font-family: 'Arial', sans-serif; background-color: #f9f9f9; color: #333; } /* Header Styling */ header { display: flex; justify-content: space-between; align-items: center; background-color: #fff; padding: 20px 40px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } header .logo img { width: 120px; } header nav ul { list-style-type: none; display: flex; } header nav ul li { margin: 0 15px; } header nav ul li a { text-decoration: none; color: #333; font-size: 18px; } header .search-container input { padding: 10px; border-radius: 5px; border: 1px solid #ccc; } header .search-container button { padding: 10px; border: none; background-color: #5c8a8a; color: #fff; border-radius: 5px; } /* Hero Section */ .hero { background: url('hero-image.jpg') no-repeat center center/cover; height: 100vh; display: flex; justify-content: center; align-items: center; color: #fff; text-align: center; } .hero h1 { font-size: 48px; font-weight: bold; } .hero p { font-size: 20px; } .hero button { padding: 12px 20px; background-color: #5c8a8a; border: none; color: #fff; border-radius: 5px; } /* Tour Section */ .tour-grid { display: flex; justify-content: space-around; flex-wrap: wrap; padding: 50px 20px; text-align: center; } .tour-card { width: 280px; margin: 20px; background-color: #fff; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border-radius: 10px; overflow: hidden; } .tour-card img { width: 100%; height: 200px; object-fit: cover; } .tour-card h3 { font-size: 24px; margin: 20px 0; } .tour-card p { font-size: 16px; margin: 0 20px; } .tour-card button { padding: 10px; background-color: #5c8a8a; color: #fff; border: none; border-radius: 5px; margin-bottom: 20px; } /* Footer */ footer { background-color: #333; color: #fff; text-align: center; padding: 20px; } footer ul { list-style-type: none; } footer ul li { display: inline; margin: 0 10px; } footer ul li a { color: #fff; text-decoration: none; }
top of page
bottom of page