其一

<html>
<head>
    <title>Popular Websites:Goole</title>
</head>
<body>
  <h1>About Google</h1>
   <p>nice to meet you my norno.</p>
   <p><a href="https://www.bilibili.com/">check here to push a new door.</a></p>
</body>



</html>

 

名称是想要设置的元素的特性。(本例中<a>元素附带属性的名称是href,该属性用于指明目标URL。)

值是希望该特性具有的值。(本例中href属性的值是https://www.bilibili.com。)

1.2-在新窗口打开链接可以添加target属性,且将值设为_blank:

<a href="https://www.bilibili.com" target="_blank">

4.XML声明

<?xml version="1.0"   encoding="UTF-8"?>

必须位于文档的起始位置并且前面不能有任何内容,encoding表明编码方式。

5.文档类型声明。

DOCTYPE于XML后<html>前。

猜你喜欢

转载自blog.csdn.net/weixin_44379910/article/details/88928405