Assignment 3

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Assignment 3</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, lightblue, white);
        }
        header {
            background-color: lightblue;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            color: blue; /* تغيير لون الخط إلى اللون الأزرق */
        }
        img {
            width: 100%;
        }
    </style>
</head>
<body>
    <header>Explore</header>
    <img src="gloves.png" alt="Gloves">
    <img src="bottle.png" alt="Bottle">
    <img src="umbrella.png" alt="Umbrella">
    <img src="shoes.png" alt="Shoes">
</body>
</html>

I edited your post.

Please update your thread title as needed and ask a question.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.