简体   繁体   English

如何将icon-linkedin链接到Linkedin个人资料页面?

[英]How To Link icon-linkedin to Linkedin profile page?

I have html website. 我有html网站。 in this Website added Profile Page . 在此网站中添加了“个人资料页面”。 Profile have Socila Icon . 配置文件有Socila图标。 i have added Linkdin page in my Profile page Like 我在个人资料页面中添加了Linkdin页面,就像

  <a href="#" class="social-icon si-rounded si-small si-linkedin">
    <i class="icon-linkedin"></i>
    <i class="icon-linkedin"></i>
 </a>

how To make Icon Clickable to Redirect Linkdin page Profile pag? 如何使图标可单击以重定向Linkdin页面配置文件pag?

<a href="#" ...#替换为个人资料页面的URL。

Place the URL of your LinkedIn profile in the href of <a> . 将您的LinkedIn个人资料的URL放在<a>href中。

<a href="https://linkedin.com/your/profile/url" class="social-icon si-rounded si-small si-linkedin">
  <i class="icon-linkedin"></i>
</a>
<a href="https://linkedin.com/your/profile/url" class="social-icon si-rounded si-small si-linkedin">
    <i class="icon-linkedin"></i>
    <i class="icon-linkedin"></i>
 </a>

Your Code is Funtastic But You Not Give Link Please Give a Link Look Like me 您的代码很有趣,但是您不给链接,请给链接看起来像我

将您的<a href =“#” class =“ social-icon si-round si-small si-linkedin”>属性标签中的#符号替换为Facebook帐户/页面的URL。

  <a href="https://in.linkedin.com/in/raru-chempazhanthy-43549623" class="social-icon si-rounded si-small si-linkedin" target="_blank">
    <i class="icon-linkedin"></i>
    <i class="icon-linkedin"></i>
 </a>

Here this will open a new tab, where the linkedin profile is shown. 这将打开一个新标签,其中显示了个人资料。 Thank You 谢谢

Your code is right, you just need to set the href of your link ( a ), to the url of your page, ex <a href="https://www.linkedin.com/in/bill-nye-science-guy-9488063b" class="social-icon si-rounded si-small si-linkedin"> 您的代码是正确的,您只需要将链接( a )的href设置为页面的URL,例如<a href="https://www.linkedin.com/in/bill-nye-science-guy-9488063b" class="social-icon si-rounded si-small si-linkedin">

Also, you have 2 images inside of the link, so unless it's like that for a reason I would recommend deleting one of the <i class="icon-linkedin"></i> 's 另外,链接中有2张图片,因此除非出于某种原因,否则我建议删除<i class="icon-linkedin"></i>的其中一个

Read this for more info on links. 阅读链接以获得更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM