This time me and my friend Shamir Salmani were asked to create a project for barcode in health industry and here we are at the end. I know that this is incomplete project but in about 1 or 2 days of the date of this post we would have done this project. We created demo patient (actually I was the demo myself) and then here we go. Watch video just to appreciate. Thanks
Images are embedded or included in an HTML document using an <img src=""/> tag. To add an image just insert this line of code in your document. HTML < img src = "html5.png" alt = "html5 logo" /> Here as you can see we used the src attribute to give the link(path) of image file. The attribute alt contains text which is shown when image gets problem in loading or somehow browser is unable to find the image. The alt="" attribute should contain text value which describes the image. For examlle the following image is the logo of HTML5 hence the alt attribute is set to html5 logo. For example I have set a wrong path to image (html5.png) which is a false location, hence the alt text is being shown down here You can customize the size of image using width and height attribute. HTML < img src = "html5.png" alt = "html5 logo" width = "300" height = "300" /> This will resize th