Practice 2


Html -

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h2>
        Mohit <br> Choubey
    </h2>
   
</body>
</html>

CSS-

h2{
    color :#ffa551;
    text-decoration: teal double underline;
    font-family: Georgia, 'Times New Roman', Times, serif ;
    text-align: center;
    font-size: 55px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
}





Comments