day 1 of start web development

 

this is the first website portfolio 


HTML, CSS code present below



<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body {
            margin: 20px;
            padding: 0;
            background-color: rgb(215, 190, 190);
        }

        div.container {
            display: flex;
            justify-content: flex-start;
            border: 2px solid black;
            height: 100px;
            align-items: center;
            gap: 40px;
            background-color: aqua;

            a {
                border: 2px solid aqua;
                background-color: rgb(81, 189, 216);
                border-radius: 6px;
            }

        }

        div.paragraph {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }
    </style>
</head>

<body>
    <div class="containerfully">
        <nav class="navbar">
            <div class="container">
                <a href="#">Home</a>
                <a href="#">About</a>
                <a href="#">Contact Me</a>
            </div>
        </nav>
        <div class="paragraph">
            <h1>Welcome NewsCity series </h1>
            <p>This series only based on my learning practice it is only uploaded
for begineer to last <br>jo pata nahi
                kaha
                tak jayega ishliye ye sirf start hai or ye dey 1 hai </p>
            <h2>Thank you</h2>

        </div>
    </div>

    <script>

    </script>
</body>

</html>

Comments