I'm trying to do the following:
I have a menu item at the top of mypage that I named "Contact me". I want to click on that item and be redirected to the bottom of the page where I have an image of a mailbox that will open the email editor if I click on it.
I tried using <a href=#contact me> in the menu item and <a name= contact me on the image link but can't get it to work.
I don't know what I'm missing/doing wrong.
Any help would be appreciated.
here's the code:
<html>
<head>
<title>Home Page</title>
</head>
<body>
<!-----------Menu--------->
<div align="left">
<a href="c:\temp website\home.htm">Home</a>
<a href="c:\temp website\resume.htm">Resume</a>
<a href="c:\temp website\employer.htm">My Employer</a>
<a href="#email me">Contact Me</a>
</div>
<!-----------End of Menu---------><br><br><br>
<em>This is my second attempt at writing a web page. I hope I covered all the neccesary tags for this assignment.
I consider myself less than a novice when using HMTL
</em>
<br><br>
<div align="bottom"><img src="email.gif" alt="" width="48" height="64" border="1" align="left">
<a NAME=email me"</a>
<a href="mailto:.....">email me</a>
</div>
</body>
</html>
I have a menu item at the top of mypage that I named "Contact me". I want to click on that item and be redirected to the bottom of the page where I have an image of a mailbox that will open the email editor if I click on it.
I tried using <a href=#contact me> in the menu item and <a name= contact me on the image link but can't get it to work.
I don't know what I'm missing/doing wrong.
Any help would be appreciated.
here's the code:
<html>
<head>
<title>Home Page</title>
</head>
<body>
<!-----------Menu--------->
<div align="left">
<a href="c:\temp website\home.htm">Home</a>
<a href="c:\temp website\resume.htm">Resume</a>
<a href="c:\temp website\employer.htm">My Employer</a>
<a href="#email me">Contact Me</a>
</div>
<!-----------End of Menu---------><br><br><br>
<em>This is my second attempt at writing a web page. I hope I covered all the neccesary tags for this assignment.
I consider myself less than a novice when using HMTL
<br><br>
<div align="bottom"><img src="email.gif" alt="" width="48" height="64" border="1" align="left">
<a NAME=email me"</a>
<a href="mailto:.....">email me</a>
</div>
</body>
</html>