使用selenium前学习HTML(2)——标签
<!-- HTML 标题(Heading)是通过 <h1> - <h6> 等标签进行定义的。 HTML 段落是通过 <p> 标签进行定义的。 HTML 链接是通过 <a> 标签进行定义的。注释:在 href 属性中指定链接的地址。 HTML 图像是通过 <img> 标签进行定义的。注释:图像的名称和尺寸是以属性的形式提供的。 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1> this is a heading</h1> <h2>这是一个标题</h2> <h3>这还是一个标题</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> <p>请仅仅把标题标签用于标题文本。不要仅仅为了产生粗体文本而使用它们。请使用其它标签或 CSS 代替。</p> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <p>段落元素由 p 标签定义。</p> <a href="http://www.w3school.com.cn"> This is a link</a> <img src="img/qiaoba.jpg" width="150" height="120" /> </body> </html>