Links: Html links are Hyper links You click on a link and go to another page. When you move the mouse over a link, the mouse arrow symbol will change into a hand symbol. In this HTML two types of linkings. 1)Text linking 2)Image linking Text Linking: In this Four types of methods...... 1)Normal Linking 2)Web Page Linking 3)Email Linking 4)Named Anchor Example: <html> <head> <title>Header</title> </head> <body> <a href="form.html">Out File</a><br> <a href="https:www.google.com">web page linking</a><br> <a href="mailto:yuvarajkoppati@gmail.com">email linking</a><br> </body> </html> Nmaed Anchor: <html> <head> <title>Header</title> </head> <body> <font size="12" color="orange"> <a name="up...
How to insert the Image in HTML? We can insert the image in html by using <img> tag. <img src=” ”> src, T he attributes specifies the URL (web address) of the image. Here Three types of Images file formats: 1)JPG or JPEG ===> Normal image 2)PNG ===>No background color 3)GIF ===>Graphic Inter change file <html> <head> <title>Header</title> </head> <body> <img src="/home/yuvaraj/ Pictures /sport_audi_grey_background_bicycling_94380_3840x2160.jpg" width="350" height="300" hspace="12" vspace="12" border="3" style="border-color:red"> <img src="/home/yuvaraj/Pictures/sport_audi_grey_background_bicycling_94380_3840x2160.png" width="350" height="300"> <img src="/home/yuvaraj/Pictures/sport_audi_grey_background_bicycling_94380_3840x2160.gif" width="...