Untitled

 avatar
unknown
plain_text
a year ago
2.2 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Joe Johnson - Realtor</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #4CAF50;
            color: white;
            padding: 10px 0;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: space-around;
            background-color: #333;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 8px 16px;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .container {
            padding: 20px;
        }
        .section {
            margin: 20px 0;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        footer {
            text-align: center;
            padding: 10px 0;
            background-color: #333;
            color: white;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
    </style>
</head>
<body>
    <header>
        <h1>Joe Johnson - Realtor</h1>
        <p>Realtor in Greater Cincinnati Area | Business Administration Student</p>
    </header>
    <nav>
        <a href="#home">Home</a>
        <a href="#discover">Discover</a>
        <a href="#new-post">New Post</a>
        <a href="#profile">My Profile</a>
        <a href="#messages">Messages</a>
        <a href="#settings">Settings</a>
    </nav>
    <div class="container">
        <div id="home" class="section">
            <h2>Home</h2>
            <p>Welcome to my personal webpage! I am Joe Johnson, a realtor from the Greater Cincinnati area. I'm currently pursuing my Bachelor's in Business Administration. 
    My goal is to simplify the home buying process by creating a website/app that connects home buyers with realtors.</p>
        </div>
        <div id="discover" class="
Editor is loading...
Leave a Comment