JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Untitled Page | JustPaste.app
18 days ago11 views
💻Technology
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Menu Bar</title>

    <link rel="stylesheet" href="index.css">
</head>
<body>

    <div class="menu-bar">
        <div class="tab">Home</div>
        <div class="tab">News</div>
        <div class="tab">Contact</div>
    </div>

</body>
</html>
body {
    margin: 0;
}

.menu-bar {
    width: 100%;
    height: 60px;
    background-color: black;
    display: flex;
}

.tab {
    width: 120px;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: background-color 0.3s;
}

.tab:hover {
    background-color: #4CAF50;
}
← Back to timeline