Computer Science, asked by shs0919192madhvi, 6 months ago

Create a webpage "first.htm", insert an image "flower.jpg", by clicking on that image navigate to second web page "second.htm" add background image in second web page. write syntax to navigate top of the webpage. *​

Answers

Answered by amitnrw
1

Given  :  create webpage." first. Htm. insert an image  "flower.jpg." by clicking on that image  navigate to second web page  "second.htm"

Solution:

HTML - Hyper Text Mark up Language

Hypertext Markup Language (HTML) is the standard markup language for

documents designed to be displayed in a web browser.

It can be assisted by technologies such as Cascading Style Sheets (CSS) and  scripting languages such as JavaScript.

first.htm

<HTML>

<HEAD>

<TITLE>

To Navigate

</TITLE

</HEAD>

<BODY>

<A Href="second.htm"> <IMG src="flower.jpg"> </IMG> </A>

</Body>

</HTML>

second.htm

<HTML>

<HEAD>

<TITLE>

To Navigate

</TITLE

</HEAD>

<BODY background="flower.jpg">

to navigate

</Body>

</HTML>

Learn More:

Which tag allows you to add row in a table? A) and b) and c) and d ...

https://brainly.in/question/6139078

Align attribute is used with following tags. (Choose any two correct ...

https://brainly.in/question/7907157

Attachments:
Similar questions