Team GyaniPandit

HTML P Tag

Paragraph Tag in HTML Well, at times, you might want to describe something as a paragraph. You can use the tag available for paragraphs in such situations. The <p> tag is used to represent a paragraph. The content between <p> and </p> is the content of the paragraphs. Have a look at the below example, […]

HTML P Tag Read More »

HTML Div Tag

HTML Div Tag The div tag defines some division in the HTML document. You can think of the div as a container holding some other HTML elements. It is used to group some content so that it can be easily styled. Other than this, it does not have any other special meaning. Here is an

HTML Div Tag Read More »

HTML span Tag

HTML span Tag The span tag can be thought of as an inline container for some part of a document or some text. Using the span tag, we can easily style the content with CSS, or can also be manipulated using JavaScript, using some class or id attributes here. Other than this, the span tag

HTML span Tag Read More »

HTML Image Link

Using Images as Links in HTML Well, just like we can use buttons as links, we can also use the images as links. We have to do the same thing, just to write the image inside the tag. Here is the code for using images as links → <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″>

HTML Image Link Read More »

Anchor Tag HTML

Understanding links in HTML Well, you might have seen some text on some websites, that, if clicked, takes you to another web page(or some other website), these are just hyperlinks/hypertext(which is such text, which refers to some other text). This is too not rocket science, but another element that does this for you. The tag

Anchor Tag HTML Read More »

HTML img tag

Adding images to our web pages Well, many times, you may have seen images on many websites and wondered how do they do it? Well, it’s not rocket science, but just a simple tag behind adding some image to your web page. The tag that you can use to add some images is the IMG

HTML img tag Read More »