Talstra

Talstra

Shifting Focus...

Array

HTML

SVG/HTML Character Template

Estimated reading: 1 minute 191 views Contributors
Create Your Character
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Create Your Character</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
        }
        .character-form {
            max-width: 600px;
            margin: 20px auto;
        }
        .svg-container {
            text-align: center;
            margin-bottom: 20px;
        }
        input[type="text"] {
            margin-bottom: 10px;
            display: block;
            width: calc(100% - 20px);
        }
    </style>
</head>
<body>
    <div class="character-form">
        <h1>Create Your Character</h1>
        <form>
            <label for="studentName">Student Name:</label>
            <input type="text" id="studentName" name="studentName">
            
            <label for="date">Date:</label>
            <input type="text" id="date" name="date">

            <div class="svg-container">
                <svg width="200" height="400" xmlns="http://www.w3.org/2000/svg">
                    <!-- SVG character outline here -->
                    <!-- ... -->
                </svg>
            </div>
            
            <!-- Trait input fields -->
            <label for="traitA">Trait A:</label>
            <input type="text" id="traitA" name="traitA">
            
            <!-- Additional traits inputs would follow here -->
            <!-- ... -->
            
            <!-- Power selection would follow here -->
            <!-- ... -->
            
            <input type="submit" value="Submit">
        </form>
    </div>
</body>
</html>
Share this Doc

SVG/HTML Character Template

Or copy link

CONTENTS
Chat Icon Close Icon