Onde posso encontrar modelos de código html do netbeans?

1

No Netbeans 7.1, não há modelos de código html incluídos na instalação.

Onde posso encontrar alguns modelos html básicos para download?

    
por Andy 18.05.2012 / 04:04

1 resposta

1

Deveria haver.

Ir para > Ferramentas > Modelos

Olhe dentro da pasta "Outros", deve haver dois modelos HTML: "Arquivo HTML" & "Arquivo XHTML".

Arquivo 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>

Arquivo 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>
    
por 01.08.2012 / 18:41