My page Using HTML and CSS

 <!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>Full Stack Developer</title>
    <style>
       
        body {
            background-colorrgb(126228123);
        }
        .main{
            font-size40px;
            font-family:Benne,sans-serif;
            font-weight:bold;
            text-aligncenter;
            background-color:white;
            margin-bottom:20px;
            padding-top:10px;
            padding-bottom:5px;
            
            
        }
        h1{
            margin0;
           
        }
        img{
              margin-left625px;
              height:250px;
              border-radius150px;
           }
        .birthdate{
            text-aligncenter;
            font-family:sans-serif;
            font-size20px;
        }   
        .content{
            text-aligncenter;
            font-size20px;
        }
        hr{
            width40%;
        }
        .endline{
            text-aligncenter;
        }
        .endline:hover{
            color:red;
            cursor:pointer;
        }
    </style>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Benne&display=swap" rel="stylesheet">
</head>

<body>
    <div class="main">
        <h1>Prashant Shukla</h1>
    </div>
    <div class="image">
        <img src="Prashant.jpeg" alt="Prashant Shukla image">
    </div>
    <br>
    <div class="birthdate">
        24 August 1999
    </div>
    <br>
    <div class="content">
        <p><i>"No matter what people tell you,words and ideas can change the world"</i>
        </p>
        <hr>
        <br>
        <p>Full Stack Developer and can code in languages in Python C,C++,Javascript</p>
    </div>
    <br>
    <div class="endline">Read more <b>here</b></div>
</body>

</html>

Comments