Untitled

 avatar
unknown
plain_text
5 months ago
4.3 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>South Texas vs. Liberian Culture</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
        }
        header {
            background: #6b4226;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: center;
            background: #f4b400;
            padding: 0.5rem 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        section {
            padding: 2rem;
            max-width: 800px;
            margin: auto;
        }
        h2 {
            color: #6b4226;
        }
        .comparison {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .comparison div {
            flex: 1;
            margin: 1rem;
            padding: 1rem;
            border: 1px solid #ccc;
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        footer {
            text-align: center;
            padding: 1rem;
            background: #6b4226;
            color: white;
            margin-top: 2rem;
        }
    </style>
</head>
<body>
    <header>
        <h1>A Cross-Cultural Journey: South Texas & Liberia</h1>
    </header>
    <nav>
        <a href="#surface">Surface Level</a>
        <a href="#intermediate">Intermediate Level</a>
        <a href="#deep">Deep Level</a>
        <a href="#references">References</a>
    </nav>

    <section id="surface">
        <h2>Surface-Level Culture</h2>
        <div class="comparison">
            <div>
                <h3>South Texas</h3>
                <p>Farming practices, church attire, and family meals are essential. Rural communities emphasize self-reliance and simple living.</p>
            </div>
            <div>
                <h3>Liberia</h3>
                <p>Food is a communal activity with no waste. Soccer is a cultural pastime that fosters unity and joy, even in challenging times.</p>
            </div>
        </div>
    </section>

    <section id="intermediate">
        <h2>Intermediate-Level Culture</h2>
        <div class="comparison">
            <div>
                <h3>South Texas</h3>
                <p>Traditions include farming, greeting with handshakes, and small-town gatherings. Community life revolves around church and family.</p>
            </div>
            <div>
                <h3>Liberia</h3>
                <p>Community ties are vital, with norms such as secret handshakes and storytelling. Resilience is a central value passed through generations.</p>
            </div>
        </div>
    </section>

    <section id="deep">
        <h2>Deep-Level Culture</h2>
        <div class="comparison">
            <div>
                <h3>South Texas</h3>
                <p>Values include individualism, faith, and mastery over nature. Hard work and preparation for the future are key elements.</p>
            </div>
            <div>
                <h3>Liberia</h3>
                <p>Collectivism, present-focused living, and harmony with nature define Liberian values. Faith and resilience guide their way of life.</p>
            </div>
        </div>
    </section>

    <section id="references">
        <h2>References</h2>
        <ul>
            <li>Ting-Toomey, S., & Chung, L. (2022). Understanding Intercultural Communication (3rd ed.). Oxford University Press.</li>
            <li>FrontPageAfrica: Commentary on Soccer in Liberia.</li>
            <li>Kiva: Discovering Liberia Through Food.</li>
            <li>Mother Earth News: Life on the Farm in the 1950s and 1960s.</li>
            <li>AL.com: A 1950s Slice of Life from Rural Alabama.</li>
        </ul>
    </section>

    <footer>
        <p>&copy; 2024 Cross-Cultural Comparison Project</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment