Skip to main content
Prompts Nanjing-Changchun Travel Itinerary HTML Template

general user planning template risk: low

Nanjing-Changchun Travel Itinerary HTML Template

Provides an HTML template for a multi-day travel itinerary from Nanjing to Changchun, featuring placeholders for dates, budget, flights, hotels, weather, attractions, meals, transp…

PROMPT

<!DOCTYPE html>
<html>
<head>
    <title>Travel Itinerary: Nanjing to Changchun</title>
    <style>
        body { font-family: Arial, sans-serif; }
        .itinerary { margin: 20px; }
        .day { margin-bottom: 20px; }
        .header { font-size: 24px; font-weight: bold; }
        .sub-header { font-size: 18px; font-weight: bold; }
    </style>
</head>
<body>
    <div class="itinerary">
        <div class="header">Travel Itinerary: Nanjing to Changchun</div>
        <div class="sub-header">Dates: ${startDate} to ${endDate}</div>
        <div class="sub-header">Budget: ${budget} RMB</div>

        <div class="day">
            <div class="sub-header">Day 1: Arrival in Changchun</div>
            <p><strong>Flight:</strong> ${flightDetails}</p>
            <p><strong>Hotel:</strong> ${hotelName} - Located in city center, comfortable and affordable</p>
            <p><strong>Weather:</strong> ${weatherForecast}</p>
            <p><strong>Packing Tips:</strong> ${packingRecommendations}</p>
        </div>

        <div class="day">
            <div class="sub-header">Day 2: Exploring Changchun</div>
            <p><strong>Attractions:</strong> ${attraction1} (Ticket: ${ticketPrice1}, Open: ${openTime1})</p>
            <p><strong>Lunch:</strong> Try local cuisine at ${restaurant1}</p>
            <p><strong>Afternoon:</strong> Visit ${attraction2} (Ticket: ${ticketPrice2}, Open: ${openTime2})</p>
            <p><strong>Dinner:</strong> Enjoy a meal at ${restaurant2}</p>
            <p><strong>Transportation:</strong> ${transportDetails}</p>
        </div>

        <!-- Repeat similar blocks for Day 3, Day 4, etc. -->

        <div class="day">
            <div class="sub-header">Day 5: Departure</div>
            <p><strong>Return Flight:</strong> ${returnFlightDetails}</p>
        </div>

    </div>
</body>
</html>

INPUTS

startDate REQUIRED

Start date of the trip

e.g. 2023-10-01

endDate REQUIRED

End date of the trip

e.g. 2023-10-05

budget REQUIRED

Total budget in RMB

e.g. 5000

flightDetails REQUIRED

Details of arrival flight

e.g. Flight MU1234, Nanjing to Changchun, 2h 30m

hotelName REQUIRED

Name of the hotel

e.g. Changchun Central Hotel

weatherForecast REQUIRED

Weather forecast for the trip

e.g. Sunny, 15-20°C

packingRecommendations REQUIRED

Tips for packing

e.g. Warm clothes, umbrella

attraction1 REQUIRED

First attraction on Day 2

e.g. Jingyuetan National Forest Park

ticketPrice1 REQUIRED

Ticket price for attraction1

e.g. 50 RMB

openTime1 REQUIRED

Opening time for attraction1

e.g. 8:00-17:00

restaurant1 REQUIRED

Lunch restaurant on Day 2

e.g. Local Cuisine House

attraction2 REQUIRED

Afternoon attraction on Day 2

e.g. Changchun World Sculpture Park

ticketPrice2 REQUIRED

Ticket price for attraction2

e.g. 60 RMB

openTime2 REQUIRED

Opening time for attraction2

e.g. 9:00-18:00

restaurant2 REQUIRED

Dinner restaurant on Day 2

e.g. Northeastern Restaurant

transportDetails REQUIRED

Transportation details for the day

e.g. Metro and taxi

returnFlightDetails REQUIRED

Details of return flight

e.g. Flight MU5678, Changchun to Nanjing, 2h 45m

REQUIRED CONTEXT

  • trip from Nanjing to Changchun

EXPECTED OUTPUT

Format
html
Constraints
  • valid HTML document
  • populate all placeholders
  • maintain structure for multiple days

CAVEATS

Dependencies
  • Values for template placeholders such as ${startDate}, ${endDate}, ${budget}, ${flightDetails}, ${hotelName}, ${weatherForecast}, ${packingRecommendations}, ${attraction1}, ${ticketPrice1}, ${openTime1}, ${restaurant1}, ${attraction2}, ${ticketPrice2}, ${openTime2}, ${restaurant2}, ${transportDetails}, ${returnFlightDetails}
Missing context
  • Values to populate placeholders like ${startDate}, ${budget}, ${flightDetails}, etc.
  • Total trip duration or logic to generate intermediate days.
  • Selection criteria for attractions, restaurants, hotels within budget.
Ambiguities
  • Incomplete specification for Day 3 and Day 4; only a comment suggests repeating similar blocks.
  • Assumes exactly 5 days with Day 5 as departure, not dynamically based on dates.
  • Fixed title and content specific to Nanjing to Changchun.

QUALITY

OVERALL
0.75
CLARITY
0.95
SPECIFICITY
0.90
REUSABILITY
0.40
COMPLETENESS
0.70

IMPROVEMENT SUGGESTIONS

  • Generalize location-specific elements with placeholders, e.g., ${origin} to ${destination} in title.
  • Fully define structures for all days or make day count dynamic via templating.
  • Add placeholders for budget breakdown, total costs, and safety tips.
  • Improve CSS for mobile responsiveness and print styles.

USAGE

Copy the prompt above and paste it into your AI of choice — Claude, ChatGPT, Gemini, or anywhere else you're working. Replace any placeholder sections with your own context, then ask for the output.

MORE FOR GENERAL USER