提问人:Hasnain Ghias 提问时间:12/7/2019 最后编辑:Pushprajsinh ChudasamaHasnain Ghias 更新时间:12/7/2019 访问量:85
我的 Anchor 标签重定向到我自己的 Wordpress 网站/“我在标签中提供的链接”
My Anchor tag redirects to my own Wordpress site/"the link I gave in Tag"
问:
我正在使用 WordPress 中的原始 HTML 小部件添加社交图标。当我添加图像和社交帐户的链接时,页面会重定向到我自己的网站/“我输入的社交链接”。 例如,我的网站是“abc.com”,我添加了 Facebook.com 的链接。它正在将我重定向到“abc.com/Facebook.com”。请帮忙。 谢谢
我的代码:
<div style="float:right;padding-right:10px;">
<a href="www.facebook.com">
<img src="http:/abc.com/wp-content/uploads/2019/12/facebook.png" alt="[Social Account]" width="30"
height="30"></a>
</div>
答:
4赞
Pushprajsinh Chudasama
12/7/2019
#1
添加到您的链接。https://
<div style="float:right;padding-right:10px;">
<a href="https://www.facebook.com">
<img src="http:/abc.com/wp-content/uploads/2019/12/facebook.png" alt="[Social Account]" width="30"
height="30"></a>
</div>
评论