Changes to whoareyou.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+

Who Are You?

+

Discover the essence of your identity.

+
+
+
+
+

Exploring Identity

+

Identity is a complex and multifaceted concept. It encompasses who you are, what you believe, and how you see yourself in the world.

+
+
+
+

Questions to Ponder

+
    +
  • What defines you?
  • +
  • How do others perceive you?
  • +
  • What are your core values?
  • +
  • How do you want to be remembered?
  • +
    +
    +
    +
    +

    Reflect on Your Journey

    +

    Take a moment to reflect on your experiences, relationships, and aspirations. Your identity is a continuous journey of self-discovery.

    +
    +
    +
    +
    +

    Explore more about yourself and your place in the world.

    +
    index.scroll
    Changed around line 1
    + buildHtml
    + baseUrl https://whoareyou.scroll.pub
    + metaTags
    + editButton /edit.html
    + title Who Are You?
    + style.css
    + body.html
    + script.js
    readme.scroll
    Changed around line 1
    + # whoareyou.scroll.pub
    + Website generated by DeepSeek from prompt: who are you
    script.js
    Changed around line 1
    + // No JavaScript needed for this simple page
    style.css
    Changed around line 1
    + body {
    + font-family: 'Arial', sans-serif;
    + line-height: 1.6;
    + margin: 0;
    + padding: 0;
    + background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    + color: #333;
    + }
    +
    + header {
    + text-align: center;
    + padding: 2rem;
    + background: rgba(255, 255, 255, 0.8);
    + border-bottom: 1px solid #ddd;
    + }
    +
    + header h1 {
    + font-size: 2.5rem;
    + margin: 0;
    + color: #444;
    + }
    +
    + header p {
    + font-size: 1.2rem;
    + color: #666;
    + }
    +
    + main {
    + padding: 2rem;
    + }
    +
    + section {
    + margin-bottom: 2rem;
    + background: rgba(255, 255, 255, 0.9);
    + padding: 1.5rem;
    + border-radius: 8px;
    + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    + }
    +
    + section h2 {
    + font-size: 2rem;
    + margin-bottom: 1rem;
    + color: #444;
    + }
    +
    + section p {
    + font-size: 1.1rem;
    + color: #555;
    + }
    +
    + section ul {
    + list-style-type: disc;
    + padding-left: 2rem;
    + }
    +
    + section ul li {
    + margin-bottom: 0.5rem;
    + font-size: 1.1rem;
    + color: #555;
    + }
    +
    + footer {
    + text-align: center;
    + padding: 1rem;
    + background: rgba(255, 255, 255, 0.8);
    + border-top: 1px solid #ddd;
    + margin-top: 2rem;
    + }
    +
    + footer p {
    + font-size: 1rem;
    + color: #666;
    + }
    +
    + @media (max-width: 768px) {
    + header h1 {
    + font-size: 2rem;
    + }
    +
    + header p {
    + font-size: 1rem;
    + }
    +
    + section h2 {
    + font-size: 1.5rem;
    + }
    +
    + section p, section ul li {
    + font-size: 1rem;
    + }
    + }