Sorry if the title is confusing, I wasn't exactly sure how to word this.
Basically what I want to do is make a link, simple enough. The page is tylerofcinema.github.io and if I make a link to say, google.com the url that I get is tylerofcinema.github.io/google.com.
Code is in a repo here,如果需要澄清,请与我们联系。
谢谢,迭戈
答案 0 :(得分:1)
你没有包含url的协议,导致href认为它需要在同一目录中打开一个页面。
尝试将http://
(或https://
)添加到您的href,它会打开指定的网址。
<a target="_blank" href="https://tylerofcinema.github.io/r/twitter"><button class="homesmb">Twitter</button></a>
答案 1 :(得分:1)
应该是一个简单的语法错误。
我的建议是将网址更改为完整地址,例如http://www.google.com,以便浏览器了解您的意思是实际的Google服务器而不是其他内容。试一试
答案 2 :(得分:1)
只需在链接开始之前添加//
,它就可以正常工作