HTML Body : Inline & Block Element in HTML

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title> Inline and block Element </title>
</head>
<body>
    <strong style="border: 2px solid yellow;"> This is a word </strong>
    <p style="border: 2px solid rgb(240, 8, 116);"> This is a word </p>
    <span style="border: 2px solid red;"> This is a word </span> <p></p>
    <span style="border: 2px solid green;"> This is also a word </span> <p></p>
    
</html>