HTML Element vs HTML Tag

As we have discuss earlier that what are html element and html tag. Now we will see the difference between these two so that it can become more clear. HTML Element vs HTML Tag: HTML Element HTML Tag Element is something which consist of start and end tag and the content within it. The starting … Read more

HTML Id vs HTML Class

HTML Id and HTML class both are selectors but are different. Now lets discuss HTML Id vs HTML Class below: HTML Id vs HTML Class: HTML id HTML Class HTML Id should be unique. HTML Classes can be similar. It is used to identify single element. Multiple elements can be identified using same class. A … Read more

HTML Attribute

HTML attribute describes the addition features or properties of html element. The html attribute is written in opening tag. Basically it is information or specification about html element. It base on pair of name and value. Name and value both are case sensitive and value is written within quotations. Multiple attributes can be added against … Read more

HTML Iframes

HTML Iframes are also known as inline frames, They are basically used for webpage nesting(to display a webpage within a webpage). HTML <iframe> tag is used to embed a webpage in another webpage. Syntax The web address of the embedded webpage is written in src value. Iframe Height and Width To specify size of inline … Read more

HTML Heading

HTML Heading basically provide six level of heading. It is basically a title or subtitle you want to show on webpage which is use to provide structure to the page. For main heading <h1> should be use than for sub heading <h2> and so on. Browser itself add a space before and after heading. HTML … Read more

HTML File Path

HTML file path defines the file location in folder structure of webpage. Path Description <img src=”filename.exe”> File is located in same folder <img src=”image/filename.exe”> File is in a subfolder name image placed in current folder <img src=”/image/filename.exe”> File is located in image folder at root of current web page. <img src=”../filename.exe”> File is located in … Read more

HTML Forms

HTML form is used to collect different kind of inputs from user it will collect data from the user and than it will post it to back-end application for further processing. HTML forms contain different input elements like text fields, check box, radio buttons and many more these are also known as html controls. HTML … Read more

HTML Multimedia

HTML Multimedia is visual representation of audio, video, movies and animation on web. Basically multimedia is anything you can see or hear. Webpage also contain numerous styles and formats of multimedia element. Example: audio, video, pictures, films, animations, graphics and many more. Browser Support In Early ages web browsers only provide text support without providing … Read more

HTML Video

HTML <video> element is used to embed the video/movie with webpage. Previous html versions did not support video files that were played using different plugins but html5 provide support for video file. HTML Video Tags Tag Description <video> It defines movie/video. <source> It allows to define multiple video resources within <video>. <track> It defines tracks … Read more

HTML Plug-ins

The objective of HTML plug-ins is to expand the functionality of HTML browser such as in early ages the html browser did not support audio and video tags than these plug-ins were used to embed the media with webpage. These plug-ins are also known as html helpers used to display the maps and other media … Read more