本文介绍了我如何将图像放在页面标题旁边的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在页面标题旁边放置图像
就像在Facebook上,页面标题旁边有图像Facebook
how can i put image beside page title
like on facebook there is image beside page title Facebook
推荐答案
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en-US"
lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon">
type="image/png"
href="/somewhere/myicon.png" />
[…]
</link></head>
[…]
</html>
<link rel="shortcut icon" href="favicon.ico" />
如有需要,请参阅以下内容以供参考:
http://www.w3.org/2005/10/howto-favicon [ ^ ]
http://www.c-sharpcorner.com /uploadfile/afenster/add-a-favicon-to-your-Asp-Net-page/ [ ^ ]
http://www.chami.com/tips/internet/110599i.html [ ^ ]
http://www.javascriptkit.com/howto/customicon.shtml [ ^ ]
If needed, have a look at these to refer:
http://www.w3.org/2005/10/howto-favicon[^]
http://www.c-sharpcorner.com/uploadfile/afenster/add-a-favicon-to-your-Asp-Net-page/[^]
http://www.chami.com/tips/internet/110599i.html[^]
http://www.javascriptkit.com/howto/customicon.shtml[^]
这篇关于我如何将图像放在页面标题旁边的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!