Posts

Showing posts with the label click

HTML CODE PART 6

Image
 HOW TO MAKE AN IMAGE AS LINK IN HTML LINKS links are the structures which connects us to the web of internet  links are like vines which are called blood carrying vessels in our body links also act as the same  links connect us to the different parts of the internet and world wide web  uncountable links are generated everyday its so much in large quantity that we cannot keep the track of how many links are generated every day. IMAGES  An image is a visual representation of something. In information technology, the term has several usages IMAGE AS LINK In some websites we can see that there are many images which acts as a link when we click on that image then that image redirects us to another page and it acts as an external link In many online shopping websites we can see images when we click on them then it takes us to the respective of their pages and gives us information this redirecting of different pages using image is called as image as link. EXAMPLE CODE...

ADDING A RADIO BUTTON IN HTML

Image
ADDING A RADIO BUTTON IN HTML Radio buttons are the simple buttons which help us to choose the options between to..... A  radio button  or  option button  is a  graphical control element  that allows the user to choose only one of a predefined  set  of mutually exclusive options. The singular property of a radio button makes it distinct from a  checkbox , which allows more than one (or no) item to be selected and for the unselected state to be restored. Radio buttons are arranged in groups of two or more and displayed on screen as, for example, a list of circular holes that can contain white space (for unselected) or a dot (for selected). Each radio button is normally accompanied by a label describing the choice that the radio button represents. The choices are  mutually exclusive ; when the user selects a radio button, any previously selected radio button in the same group becomes deselected (making it so only one can be selected). Sele...