Layout Preview

notebook ig

Author: yagamilover
Category: ******
Created: July 9, 2026
Downloads: 11
Log in to Apply

Live Preview

Comments (0)

No comments yet. Be the first!

Log in to leave a comment.

Layout CSS

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>★ My Notebook Space ★</title>
    <style>
        /* --- Notebook Global Styles --- */
        * {
            box-sizing: border-box;
        }
        
        body {
            background-color: #faf6f0;
            /* Classic Lined Notebook Paper Simulation */
            background-image: linear-gradient(#e1e9f5 1px, transparent 1px);
            background-size: 100% 24px;
            font-family: "Comic Sans MS", "Courier New", sans-serif;
            color: #2b2b2b;
            margin: 0;
            padding: 20px;
            position: relative;
        }

        /* Vertical Pink Margin Line for Notebook Grid Effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 60px;
            width: 2px;
            height: 100%;
            background-color: #ff9999;
            z-index: -1;
        }

        /* --- Container Layout --- */
        .wrapper {
            max-width: 950px;
            margin: 0 auto 0 80px; /* Offset to sit cleanly past the pink margin line */
            background: #ffffff;
            border: 2px solid #444444;
            border-radius: 4px;
            padding: 20px;
            box-shadow: 4px 4px 0px #cccccc;
        }

        /* --- Text Ticker --- */
        .ticker {
            background: #f0f0f0;
            color: #333333;
            font-family: monospace;
            padding: 5px;
            font-size: 14px;
            border: 1px solid #444444;
            margin-bottom: 15px;
        }

        /* --- Header Element --- */
        header {
            text-align: center;
            background: #ffffff;
            border: 3px dashed #444444;
            padding: 25px 10px;
            margin-bottom: 20px;
        }

        header h1 {
            margin: 0;
            font-size: 42px;
            color: #111111;
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }

        header p {
            color: #555555;
            margin: 10px 0 0 0;
            font-weight: bold;
            background: #eaeaea;
            display: inline-block;
            padding: 5px 15px;
            font-size: 14px;
            text-transform: uppercase;
        }

        /* --- Navigation --- */
        nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        nav a {
            background: #ffffff;
            color: #333333;
            padding: 8px 15px;
            text-decoration: none;
            font-weight: bold;
            border: 2px solid #444444;
            border-radius: 4px;
            box-shadow: 2px 2px 0px #888888;
        }

        nav a:hover {
            background: #f0f0f0;
            box-shadow: 1px 1px 0px #888888;
        }

        /* --- Main Content Grid --- */
        .main-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .wrapper {
                margin: 0 auto;
            }
        }

        /* --- Sidebar Style --- */
        aside {
            background: #ffffff;
            border: 2px solid #444444;
            padding: 15px;
            border-radius: 4px;
        }

        .profile-box {
            text-align: center;
            border-bottom: 2px dashed #cccccc;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .profile-pic {
            width: 150px;
            height: 150px;
            background: #f5f5f5;
            border: 2px solid #444444;
            border-radius: 4px;
            margin: 0 auto 10px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
        }

        .sidebar-section {
            margin-bottom: 20px;
        }

        .sidebar-section h3 {
            background: #eaeaea;
            color: #111111;
            margin: 0 0 10px 0;
            padding: 5px;
            font-size: 14px;
            text-align: center;
            text-transform: uppercase;
            border: 1px solid #444444;
        }

        /* --- Music Player Widget --- */
        .music-player {
            background: #ffffff;
            border: 2px solid #444444;
            padding: 10px;
            color: #333333;
            font-family: monospace;
            border-radius: 4px;
            text-align: center;
        }

        .player-buttons {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 5px;
        }

        .player-buttons button {
            background: #ffffff;
            border: 1px solid #444444;
            color: #333333;
            font-size: 10px;
            padding: 2px 6px;
            cursor: pointer;
        }

        /* --- Badges & Graphics Panel --- */
        .blinkies {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: center;
        }

        .blinkie-placeholder {
            width: 150px;
            height: 20px;
            background: #ffffff;
            color: #333333;
            font-size: 9px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #444444;
            text-transform: uppercase;
        }

        /* --- Blog Posts --- */
        .blog-feed {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .post {
            background: #ffffff;
            border: 2px solid #444444;
            box-shadow: 4px 4px 0px #888888;
            padding: 20px;
            position: relative;
        }

        .post-header {
            border-bottom: 2px solid #444444;
            margin-bottom: 15px;
            padding-bottom: 5px;
        }

        .post-title {
            margin: 0;
            font-size: 24px;
            color: #111111;
            font-family: 'Arial Black', sans-serif;
        }

        .post-date {
            font-size: 11px;
            color: #666666;
            font-style: italic;
        }

        .post-mood {
            background: #f9f9f9;
            border: 1px dashed #444444;
            padding: 5px 10px;
            font-size: 12px;
            display: inline-block;
            margin-top: 15px;
        }

        /* --- Comment Section --- */
        .comment-section {
            margin-top: 20px;
            background: #fafafa;
            border: 1px solid #cccccc;
            padding: 10px;
        }

        .comment {
            border-bottom: 1px dotted #888888;
            padding: 8px 0;
            font-size: 13px;
        }

        .comment-author {
            font-weight: bold;
            color: #111111;
        }
    </style>
</head>
<body>

    <div class="wrapper">
        
        <!-- Text Ticker -->
        <div class="ticker">
            <marquee scrollamount="3">+++ WELCOME TO MY BLOG! xoxo LEAVE A COMMENT BELOW! +++ CURRENTLY READING MY DIARY +++</marquee>
        </div>

        <!-- Layout Header -->
        <header>
            <h1>★ PRINCESS_XOXO ★</h1>
            <p>✧ Too Glam To Give A Damn ✧</p>
        </header>

        <!-- Navigation Links -->
        <nav>
            <a href="#">Home</a>
            <a href="#">About Me</a>
            <a href="#">Pics</a>
            <a href="#">Blings</a>
            <a href="#">Links</a>
        </nav>

        <!-- Main Workspace Grid -->
        <div class="main-grid">
            
            <!-- Sidebar (Left Column) -->
            <aside>
                <div class="profile-box">
                    <div class="profile-pic">👸🏼</div>
                    <div style="font-weight: bold; font-size: 18px;">yagamilover</div>
                    <div style="font-size: 12px; color: #555555;">"Livin' large & lookin' fly"</div>
                </div>

                <!-- Music Player Widget -->
                <div class="sidebar-section">
                    <h3>🎵 Now Playing</h3>
                    <div class="music-player">
                        <div style="font-size: 11px; overflow: hidden; white-space: nowrap;">
                            <marquee scrollamount="2" width="100%">Paris Hilton - Stars Are Blind.mp3</marquee>
                        </div>
                        <div style="font-size: 10px; color: #666666;">01:43 / 03:57</div>
                        <div class="player-buttons">
                            <button>■ Stop</button>
                            <button>▶ Play</button>
                            <button>║ Pause</button>
                        </div>
                    </div>
                </div>

                <!-- Stats Section -->
                <div class="sidebar-section">
                    <h3>★ Stats</h3>
                    <p style="font-size: 13px; margin: 5px 0;"><strong>Mood:</strong> 💅 Bored</p>
                    <p style="font-size: 13px; margin: 5px 0;"><strong>Location:</strong> At Home🛍️</p>
                    <p style="font-size: 13px; margin: 5px 0;"><strong>Profile Views:</strong> 994,321</p>
                </div>

                <!-- Badges Section -->
                <div class="sidebar-section">
                    <h3>⚡ Badges</h3>
                    <div class="blinkies">
                        <div class="blinkie-placeholder">PRINCESS CLUB</div>
                        <div class="blinkie-placeholder">GLITTER ADDICT</div>
            <!-- Blog Feed Column (Right Column) -->
            <main class="blog-feed">

                <article class="post">
                    <div class="post-header">
                        <h2 class="post-title">✨ i dunno ✨</h2>
                        <div class="post-date">Posted on: July 9, 2026 @ 12:45 PM</div>
                    </div>
                    
                    
                   
                    </div>

                    
                       
                        </div>
                                                </div>
                    </div>
                </article>

             
                    
                    <div class="post-mood">
                        <strong>Current Mood:</strong> Sassy 💁🏾‍♀ | <strong>Listening to:</strong> Ayesha Erotica
                    </div>
                </article>

            </main>

        </div> <!-- End of Main Grid -->

    </div> <!-- End of Wrapper -->

</body>
</html>