HOW TO CREATE WEBSITE USING HTML ? PART 2
HTML Attributes ❮ Previous Next ❯ HTML attributes provide additional information about HTML elements. HTML Attributes All HTML elements can have attributes Attributes provide additional information about elements Attributes are always specified in the start tag Attributes usually come in name/value pairs like: name="value" The href Attribute The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to: Example < a href ="https://www.w3schools.com" > Visit W3Schools < /a > Try it Yourself » You will learn more about links in our HTML Links chapter . The src Attribute The <img> tag is used to embed an image in an HTML page. The src attribute specifies the path to the image to be displayed: Example < img src ="img_girl.jpg" > Try it Yourself » There are two ways to specify the URL in the src attribute: 1. Absolute URL - Links to an external image that is hosted on anothe