Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by wantabe2
at 2024-07-30 06:31:14
Point:500 Replies:2 POST_ID:829166USER_ID:10
Topic:
Hypertext Markup Language (HTML);;Miscellaneous Web Development
How can I add a link to http://www.google.com in this code? I'd like for th euser to be able to click on the photo displayed on the page & it take them to google website...thanks
<center> <img alt="" height="63" src="./includes/myphoto.jpg" width="106" /><br></center> 1:
Expert: duncanb7 replied at 2024-07-30 06:37:54
Just insert the following into html code area that you want to display the link
Duncan
Duncan
<?php$str='<center> <img alt="" height="63" src="./includes/myphoto.jpg" width="106" /><br></center>';echo $str;?> 1:2:3:4:5:6:
Accepted Solution
Expert: Ray Paseur replied at 2024-07-30 06:36:37
500 points EXCELLENT
Wrap the <img> tag in an anchor tag.
<center> <a href="https://google.com"><img alt="" height="63" src="./includes/myphoto.jpg" width="106" /></a><br></center> 1: