Take Me To The Prom

Take Me To The Prom 's profile picture

Last active:

Mood:

View my: Blog | Forum Topics

SpaceHey URL:

https://spacehey.com/takemetotheprom07

Take Me To The Prom 's Interests

General

Music I Live For:

⚡  Pop Rock Pop Punk, and anything with a glockenspiel.

Currently Into:

  • Doodling on Chuck Taylors
  • Side-swept bangs & excessive hairspray
  • Old school photo booths
  • Watercolors and messy ink pens

"Write it in a letter and send it to the moon."

Music

STAY POSITIVE // DRINK OJ // PLAY UKULELE

Current Rotation:

  • Never Shout Never (The Yippee EP Era)
  • Plug In Stereo
  • Sing It Loud
  • Forever The Sickest Kids
  • The Scene Aesthetic

"It’s not a phase, it’s a lifestyle."

Movies

🎥 MUST WATCH VIBES:

  • Nick & Norah's Infinite Playlist (Pure 2008 energy)
  • Juno (For the acoustic-indie aesthetic)
  • Adventureland
  • Scott Pilgrim vs. The World

"everything is neon and nothing hurts"

Television

📺 CARTOONS

  • The Fairly OddParents (Wanda > Cosmo)
  • Ed, Edd n Eddy (The jawbreaker life)
  • Phineas and Ferb

🎬 SITCOMS

  • My Name is Earl
  • Raising Hope
  • Malcolm in the Middle
  • Everybody Hates Chris

Books

Reading List / Notebooks

  • Scrawled lyrics in the back of my math notebook
  • Postcards from places I haven't been yet
  • Polaroid collections & DIY zines
  • Anything by Dr. Seuss (for the rhymes)
  • Graphic novels with too much neon ink

*** last updated: 2:00 AM ***

Heroes

Music: Everything from synth-pop to acoustic jams. Think neon lights meet composition notebooks.
Movies: Coming-of-age films, anything with a great soundtrack, and concert DVDs.
Hobbies: Customizing layouts, learning uke tabs, skate sessions, and taking way too many photos with a digital camera.

Take Me To The Prom 's Links

Take Me To The Prom 's Latest Blog Entries [View Blog]

Hello new friends (view more)

Take Me To The Prom 's Blurbs

About me:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Synth & Pop-Rock Revival</title>

    <link href="https://fonts.googleapis.com/css2?family=Varela+Round&family=Fredoka+One&display=swap" >

    <style>

        :root {

            --bg-color: #0f0c1b;

            --card-bg: rgba(25, 20, 38, 0.75);

            --neon-pink: #ff2a85;

            --neon-cyan: #00f0ff;

            --neon-yellow: #f3e600;

            --text-main: #ffffff;

            --text-muted: #b3b0c8;

        }


        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

        }


        body {

            background-color: var(--bg-color);

            background-image: 

                radial-gradient(circle at 10% 20%, rgba(255, 42, 133, 0.15) 0%, transparent 40%),

                radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 40%);

            font-family: 'Varela Round', sans-serif;

            color: var(--text-main);

            min-height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            padding: 40px 20px;

            overflow-x: hidden;

        }


        .container {

            width: 100%;

            max-width: 900px;

            background: var(--card-bg);

            backdrop-filter: blur(12px);

            -webkit-backdrop-filter: blur(12px);

            border: 1px solid rgba(255, 255, 255, 0.1);

            border-radius: 24px;

            padding: 40px;

            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),

                        0 0 30px rgba(255, 42, 133, 0.1);

        }


        header {

            text-align: center;

            margin-bottom: 35px;

        }


        h1 {

            font-family: 'Fredoka One', cursive, sans-serif;

            font-size: 2.8rem;

            letter-spacing: 2px;

            background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            margin-bottom: 10px;

            text-shadow: 0 0 20px rgba(255, 42, 133, 0.3);

        }


        p.subtitle {

            color: var(--text-muted);

            font-size: 1rem;

            text-transform: uppercase;

            letter-spacing: 3px;

        }


        .artist-grid {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

            gap: 15px;

            margin-bottom: 30px;

        }


        .artist-card {

            background: rgba(255, 255, 255, 0.03);

            border: 1px solid rgba(255, 255, 255, 0.07);

            padding: 16px 20px;

            border-radius: 12px;

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            display: flex;

            align-items: center;

            justify-content: space-between;

            position: relative;

            overflow: hidden;

        }


        .artist-card::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 4px;

            height: 100%;

            background: var(--neon-cyan);

            opacity: 0;

            transition: opacity 0.3s ease;

        }


        .artist-card:hover {

            transform: translateY(-4px);

            background: rgba(255, 255, 255, 0.07);

            border-color: rgba(0, 240, 255, 0.4);

            box-shadow: 0 8px 20px rgba(0, 240, 255, 0.15);

        }


        .artist-card:hover::before {

            opacity: 1;

        }


        .artist-name {

            font-size: 1.05rem;

            font-weight: 600;

            color: var(--text-main);

        }


        .bullet {

            font-size: 0.8rem;

            color: var(--neon-pink);

            transition: transform 0.3s ease;

        }


        .artist-card:hover .bullet {

            transform: scale(1.3);

            color: var(--neon-cyan);

        }


        footer {

            text-align: center;

            border-top: 1px solid rgba(255, 255, 255, 0.1);

            padding-top: 20px;

            font-size: 0.85rem;

            color: var(--text-muted);

        }


        footer a {

            color: var(--neon-cyan);

            text-decoration: none;

            transition: color 0.2s;

        }


        footer a:hover {

            color: var(--neon-pink);

            text-decoration: underline;

        }


        @media (max-width: 600px) {

            .container {

                padding: 20px;

            }

            h1 {

                font-size: 2rem;

            }

        }

    </style>

</head>

<body>


    <div class="container">

        <header>

            <h1>Golden Era Electropop</h1>

            <p class="subtitle">Synth, Scene & Dance-Rock Rotation</p>

        </header>


        <div class="artist-grid">

            <div class="artist-card"><span class="artist-name">Owl City</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">The Ready Set</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Kill Paradise</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">PlayRadioPlay!</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Hellogoodbye</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Cute Is What We Aim For</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Forever The Sickest Kids</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">The White Tie Affair</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">The Friday Night Boys</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">The Downtown Fiction</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Mercy Mercedes</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Every Avenue</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">The Academy Is...</span><span class="bullet">✦</span></div>

            <div class="artist-card"><span class="artist-name">Holiday Parade</span><span class="bullet">✦</span></div>

        </div>


        <footer>


            <p>Curated playlist vibes • <a href="https://on.soundcloud.com/fzaglidAjwYbIyRzMt" target="_blank">Listen on SoundCloud</a></p>

        </footer>

    </div>


</body>

</html>

Who I'd like to meet:

people who still have confetti in their pockets from the last show. if u like ukulele covers, neon hoodies, and staying up until 3am writing songs about girls we haven't met yet... add me!!

i'm looking for:
- anyone who knows all the words to "wow! oh it's love"
- photographers who still use film (or just heavy filters lol)
- new friends to join the band one day!! ✌️

Peace Sign LET'S BE FRIENDS & MAKE SOME NOISE! Peace Sign

Take Me To The Prom 's Friend Space

[view all]

Take Me To The Prom has 3 friends.

Take Me To The Prom 's Friends Comments

Displaying 0 of 0 comments ( View all | Add Comment )