-->
Showing posts with label span tag. Show all posts
Showing posts with label span tag. Show all posts

Tuesday, July 21, 2020

HTML page to understand inline concept(using span).

Here is a quick example to understand inline concept.
-----------------------------------------------------------------------------------------------------
<html> <!--root tag-->
<head> <!--meta tag-->
<title><!--title tag-->
inline concept
</title>
</head>
<body><!--body tag; it is a container-->
<span>learning inline concep. In this the text is placed in same line.It doesnot break the line.t</span>
<!--An inline element does not start  a new line 
and takes up as much width as necessary.
      -->
</body>
</html>