在哪里可以找到 Netbeans HTML 代码模板?

在哪里可以找到 Netbeans HTML 代码模板?

在 Netbeans 7.1 中安装时不包含 html 代码模板。

在哪里可以找到一些可供下载的基本 html 模板?

答案1

应该有。

转至 > 工具 > 模板

查看“其他”文件夹,应该有 2 个 HTML 模板:“HTML 文件”和“XHTML 文件”。

HTML 文件

<#assign licenseFirst = "<!--">
<#assign licensePrefix = "">
<#assign licenseLast = "-->">
<#include "../Licenses/license-${project.license}.txt">
${doctype}
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=${encoding}">
  </head>
  <body>
      <div>TODO write content</div>
  </body>
</html>

XHTML 文件

<?xml version="1.0" encoding="${encoding}"?>
<#assign licenseFirst = "<!--">
<#assign licensePrefix = "">
<#assign licenseLast = "-->">
<#include "../Licenses/license-${project.license}.txt">
${doctype}
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>TODO supply a title</title>
    </head>
    <body>
        <div>TODO write content</div>
    </body>
</html>

相关内容