Heliosanctus's Testing Wiki
Advertisement

<!DOCTYPE html>

<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Clicker Profile</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f0f8ff; margin: 0; padding: 0; text-align: center; color: #333; } .container { background-color: #ffffff; width: 80%; max-width: 500px; margin: 50px auto; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .header { margin-bottom: 30px; } .header h1 { font-size: 36px; color: #ff6347; } .counter { font-size: 24px; color: #333; margin-bottom: 20px; } .click-button { padding: 10px 20px; font-size: 18px; color: white; background-color: #ff6347; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } .click-button:hover { background-color: #d8544f; } footer { font-size: 16px; margin-top: 40px; color: #ff6347; } </style> </head> <body>

Character Profile

Click the button below to interact with the profile.

You have clicked the button 0 times.

<button class="click-button" onclick="increaseClickCount()">Click Me!</button>

<footer>

Profile Created with ❤️

</footer> <script> // Initialize the click count let clickCount = 0; // Function to increase the click count function increaseClickCount() { clickCount++; document.getElementById('clickCount').innerText = clickCount; } </script> </body> </html>



<html lang="en"> <head>

<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Character Profile</title> <style> body { font-family: 'Arial', sans-serif; background-image: url('background-image-url.jpg'); background-size: cover; background-position: center; color: #333; margin: 0; padding: 0; } .container { width: 80%; margin: 0 auto; padding: 20px; background-color: rgba(255, 255, 255, 0.8); border-radius: 15px; box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); } .header { text-align: center; color: #ff6347; } .header img { width: 150px; height: 150px; border-radius: 50%; border: 4px solid #ff6347; } .header h1 { font-size: 36px; margin-top: 20px; } .header p { font-size: 18px; color: #666; } .infobox { background-color: #ffebcd; padding: 15px; margin-bottom: 25px; border-radius: 8px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } .infobox h2 { font-size: 24px; color: #ff6347; } .section { margin-bottom: 30px; } .section h2 { font-size: 28px; color: #ff6347; margin-bottom: 10px; } .section p { font-size: 18px; line-height: 1.6; color: #555; } .section textarea { width: 100%; height: 150px; padding: 10px; font-size: 16px; color: #333; background-color: #fff; border: 2px solid #ff6347; border-radius: 8px; box-sizing: border-box; margin-bottom: 10px; } .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; } .gallery img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } .footer { text-align: center; margin-top: 40px; font-size: 16px; color: #ff6347; } </style> </head> <body>

<img src="character-photo-url.jpg" alt="Character Photo">

Character Name

Brief tagline or quote about the character

Character Info

Age: 25

Race: Dragon

Element: Fire

Appearance

<textarea placeholder="Describe the character's physical features here..."></textarea>

Personality

<textarea placeholder="Describe the character's personality traits here..."></textarea>

Abilities

<textarea placeholder="Describe the character's abilities and powers here..."></textarea>

History

<textarea placeholder="Describe the character's backstory here..."></textarea>

Gallery

</body>

</html>


Text
Main
Canon
Trivia
References

Text

Text

Text

Text

Advertisement