Character Profile
- 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>