Skip to content
Character Profile
Character Image
  • Height: 5.11 ft.
  • Gender: X (They/Them)
  • Weight: IDK (I Don't Know)
  • Push-ups: ~10
  • Squats: ~10
  • Crunches: ~10

Skills: πŸ€“

Cooking - Level 6 πŸ‘¨β€πŸ³ Cleaning - Level 5 πŸ’ͺ Coding - Level 4 πŸ’» Communication - Level 7 πŸ’¬ Crafting - Level 6 πŸ”©

Interests: πŸ€”

  • Kink πŸ‘€
  • Computers πŸ’»
  • Trains πŸš‚

Hi there! Thanks for checking out my stats page. I used this page to learn how to render html directly to the site. Daisy helped immensely in figuring this out.

Check out the code here:

<style>
    .pokemon-card-container {
        display: flex;
        justify-content: center;
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .pokemon-card {
        background-color: #f8e8b0;
        border: 12px solid #ffd700;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 600px;
        padding: 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }
    .pokemon-card::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, #ffcb05 20%, transparent 70%);
        opacity: 0.5;
    }
    .card-header {
        background-color: #ffcb05;
        border-radius: 10px 10px 0 0;
        padding: 10px;
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        margin: -20px -20px 15px -20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .card-content {
        display: flex;
        justify-content: space-between;
    }
    .card-left, .card-right {
        width: 48%;
    }
    .card-image {
        text-align: center;
        margin-bottom: 15px;
        background-color: #e0d8a0;
        padding: 10px;
        border-radius: 10px;
    }
    .card-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
        border: 5px solid #ffd700;
        border-radius: 10px;
    }
    .card-body ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    .card-body ul li {
        margin-bottom: 10px;
        background-color: #e0d8a0;
        padding: 5px 10px;
        border-radius: 5px;
    }
    .card-section-title {
        background-color: #3d7dca;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 15px;
        font-size: 18px;
    }
    .skills, .interests {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }
    .skills span, .interests li {
        background-color: #ffcb05;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 14px;
    }
    @media only screen and (max-width: 768px) {
        .pokemon-card-container {
            padding: 10px;
        }
        .pokemon-card {
            max-width: none;
        }
        .card-content {
            flex-direction: column;
        }
        .card-left, .card-right {
            width: 100%;
        }
    }
</style>

<div class="pokemon-card-container">
    <div class="pokemon-card">
        <div class="card-header">Character Profile</div>
        <div class="card-content">
            <div class="card-left">
                <div class="card-image">
                    <img src="card2.png" alt="Character Image" />
                </div>
                <div class="card-body">
                    <ul>
                        <li><strong>Height:</strong> 5.11 ft.</li>
                        <li><strong>Gender:</strong> X (They/Them)</li>
                        <li><strong>Weight:</strong> IDK (I Don't Know)</li>
                        <li><strong>Push-ups:</strong> ~10</li>
                        <li><strong>Squats:</strong> ~10</li>
                        <li><strong>Crunches:</strong> ~10</li>
                    </ul>
                </div>
            </div>
            <div class="card-right">
                <h3 class="card-section-title">Skills: πŸ€“</h3>
                <div class="skills">
                    <span>Cooking - Level 6 πŸ‘¨β€πŸ³</span>
                    <span>Cleaning - Level 5 πŸ’ͺ</span>
                    <span>Coding - Level 4 πŸ’»</span>
                    <span>Communication - Level 7 πŸ’¬</span>
                    <span>Crafting - Level 6 πŸ”©</span>
                </div>
                <h3 class="card-section-title">Interests: πŸ€”</h3>
                <ul class="interests">
                    <li>Kink πŸ‘€</li>
                    <li>Computers πŸ’»</li>
                    <li>Trains πŸš‚</li>
                </ul>
            </div>
        </div>
    </div>
</div>

stats