Page 269 - Web Applications (803) Class 12
P. 269

Practical Work





                                                                                                      Computational Thinking


                 HTML/CSS/JAVASCRIPT                                                                  Creativity



                   1.  Create a webpage with multiple images. Each image should be a hyperlink to a website.
                  Ans.  <html>

                      <head>
                          <title>Image Hyperlinks</title>

                      </head>
                      <body>
                          <h1>Click on the image to open that website</h1>
                          <a href=”https://www.cbse.nic.in”>

                              <img src=”cbselogo.png” alt=”Image 1” height=25% width=25%>
                          </a>

                          <br> <br>
                          <a href=”https://orangeeducation.in/”>
                              <img src=”orangelogo.png” alt=”Image 2” height=25% width=25%>

                          </a>
                          <br> <br> <br> <br>
                          <a href=”https://en.wikipedia.org/wiki/Main_Page”>

                              <img src=”wikilogo.png” alt=”Image 3” height=25% width=25%>
                          </a>
                      </body>

                      </html>
                       Output:






















                                                                                                    Practical Work   267
   264   265   266   267   268   269   270   271   272   273   274