搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 标签大全
源代码
清空
点击运行
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>HTML5 noscript标签的使用(大卫编程网 div.cn)</title> </head> <body> <h1>Heading 1</h1> <p>This is a paragraph that appears under Heading 1.</p> <script src="/js/examples.js"></script> <script>document.write("Hello World!")</script> <noscript> <p>This is a <a href="examples.html">link to more examples</a>.</p> </noscript> <noscript>抱歉,你的浏览器不支持 JavaScript!</noscript> </body> </html>
运行结果