<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Tasty Recipes - Delicious and Healthy Meal Suggestions</title>
</head>
<body>
    <div class="header">
        <h1 class="webtitle">Aesir Appetites</h1>
        <div class="navbar">
            <strong>
                <div class="navbar-items">ABOUT US</div>
                <div class="navbar-items">CONTRIBUTE</div>
                <div class="navbar-items">RECIPES</div>
            </strong>
        </div>
    </div>
    <div class="recipe-bar-background">
        <div class="recipe-bar">
            <div class="recipes-lead-in">
                <h1>Our Selection - Recipes from the Community</h1>
                <p>              
                    Here at Aesir Appetites, we realize that you have the world 
                    of options when it comes to food. 
                    <br> We're here to make the picking easy by providing a meal plan that keeps your tastebuds interested. 
                    <br> Our Odin recipes will get the job done!
                </p>
            </div>
            <a href="./recipes/chicken_and_veggie_stir_fry.html" target="_blank" rel="noopener noreferrer">
                <div class="recipe-bar-item">
                    <div class="recipe-bar-head">
                        Chicken and Veggie Stir Fry
                    </div>
                    <div class="recipe-bar-body" id="item1"></div>
                </div>
            </a>
            <a href="./recipes/shrimp_linguine.html" target="_blank" rel="noopener noreferrer">
                <div class="recipe-bar-item">
                    <div class="recipe-bar-head">
                        Shrimp Linguine
                    </div>
                    <div class="recipe-bar-body" id="item2"></div>
                </div>
            </a>
            <a href="./recipes/sticky_pineapple_chicken.html" target="_blank" rel="noopener noreferrer">
                <div class="recipe-bar-item">
                    <div class="recipe-bar-head">
                        Sticky Pineapple Chicken
                    </div>
                    <div class="recipe-bar-body" id="item3"></div>
                </div>
            </a>
        </div>
    </div>
</body>
</html>