<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Session Zero Questionnaire</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
margin: 0;
padding: 2rem;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
}
label {
font-weight: bold;
display: block;
margin-top: 1rem;
}
textarea, input, select {
width: 100%;
padding: 0.5rem;
margin-top: 0.5rem;
border-radius: 4px;
border: 1px solid #ccc;
}
button {
margin-top: 2rem;
padding: 1rem;
width: 100%;
font-size: 1rem;
background-color: #007acc;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #005fa3;
}
</style>
</head>
<body>
<div class="container">
<h1>Session Zero Questionnaire</h1>
<form>
<label>What game system are we playing?</label>
<input type="text" name="game-system" />
<label>What tone or themes do you want for the campaign?</label>
<textarea name="tone-themes"></textarea>
<label>What is the expected duration of the campaign (short, medium, long)?</label>
<select name="duration">
<option value="short">Short (1-5 sessions)</option>
<option value="medium">Medium (6-15 sessions)</option>
<option value="long">Long (16+ sessions)</option>
</select>
<label>What kind of setting are you interested in?</label>
<textarea name="setting"></textarea>
<label>What kind of character stories or arcs do you want to explore?</label>
<textarea name="character-arcs"></textarea>
<label>What are your character preferences (class, background, goals)?</label>
<textarea name="character-preferences"></textarea>
<label>Are there any themes or topics you want to avoid?</label>
<textarea name="content-boundaries"></textarea>
<label>What level of combat vs. roleplay vs. exploration do you prefer?</label>
<textarea name="balance-preference"></textarea>
<label>What are your scheduling preferences (day/time/frequency)?</label>
<textarea name="scheduling"></textarea>
<label>What safety tools do you want to use (e.g., X-card, Lines and Veils)?</label>
<textarea name="safety-tools"></textarea>
<label>What are your expectations for rules interpretation (RAW, RAI, Rule of Cool)?</label>
<textarea name="rules-interpretation"></textarea>
<label>What kind of player/GM behavior makes the game most fun for you?</label>
<textarea name="player-expectations"></textarea>
<button type="submit">Submit Responses</button>
</form>
</div>
</body>
</html>