title ,base标记 - TsingYiPontifex/html5 GitHub Wiki
<html>
<head>
<title>页面显示标题</title>
</head>
</html>
base:页面基本路径或者叫做目标帧的设置
- href
- 指定网页跳转基准URL,如果不指定,则在当前页中跳转
<base href="www.aaa.zzz"/>
- target
- 指定连接的跳转帧,如果不指定则在当前页中跳转
<base target="_blank"/>
<html>
<head>
<base href="www.aaa.zz"/>
<base target="_blank"/>
</head>
<body>
<a href="index.html" target="_blank">首页</a>
<a href="news.html">新闻</a>
</body>
</html>