Full Page

You are invited

Frequency 2026

A gathering at the intersection of sound, code, and light

Date

September 12-14, 2026

Venue

Kraftwerk Berlin

Three days of live audiovisual performances, installations, and workshops. Frequency brings together musicians, programmers, and visual artists working at the edge of generative art and real-time media. Limited to 400 attendees.

[email protected]

Event Invitation

Elegant event invitation card with date, venue, description and RSVP link.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
event_name string
tagline string
date_line string
venue string
details text
cover_image image
rsvp_url link
contact_email email

Apply Values

POST JSON to the API endpoint:

POST /api/templates/event-invite/apply
Content-Type: application/json

{
  "event_name": "Frequency 2026",
  "tagline": "A gathering at the intersection of sound, code, and light",
  "date_line": "September 12-14, 2026",
  "venue": "Kraftwerk Berlin",
  "details": "Three days of live audiovisual performances, installations, and workshops. Frequency brings together musicians, programmers, and visual artists working at the edge of generative art and real-time media. Limited to 400 attendees.",
  "cover_image": "/images/defaults/cover-event.webp",
  "rsvp_url": "https://example.com/rsvp",
  "contact_email": "[email protected]"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Event Invitation" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{event_name:string}}, {{tagline:string}}, {{date_line:string}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "event_name": "string",
  "tagline": "string",
  "date_line": "string",
  "venue": "string",
  "details": "text",
  "cover_image": "image",
  "rsvp_url": "link",
  "contact_email": "email"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{event_name:string}}` → string
- `{{tagline:string}}` → string
- `{{date_line:string}}` → string
- `{{venue:string}}` → string
- `{{details:text}}` → text
- `{{cover_image:image}}` → image
- `{{rsvp_url:link}}` → link
- `{{contact_email:email}}` → email

Output ONLY the HTML code block. No explanation.