Où puis-je trouver des modèles de code HTML netbeans?


1

Dans Netbeans 7.1, aucun modèle de code HTML n’est inclus dans l’installation.

Où puis-je trouver des modèles HTML de base à télécharger?

Réponses:


1

Il devrait y avoir.

Aller à> Outils> Modèles

Regardez dans le dossier "Autre", il devrait y avoir 2 modèles HTML: "Fichier HTML" & "Fichier XHTML".

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

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

maintenant il n'y a plus aucune Tools > Templatesoption
Fast Snail
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.