Computer Science, asked by ecanjaliranigmailcom, 7 months ago

create webpage." first. Htm. insert an image
"flower.jpg." by clicking on that image
navigate to second web page
"second.htm"
add Background image on second web page
Write syntaxto navigate top of the web
page​

Answers

Answered by amitnrw
3

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