HTML—超链接
1 DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 7 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 8 <title>超链接或热链接title> 9 <style> 10 a { 11 text-decoration: none; 12 /* 取消超链接下划线 */ 13 } 14 style> 15 head> 16 17 <body> 18 <a href="https://www.baidu.com/?tn=15007414_17_dg">百度a> 19 21 22 body> 23 24 html>