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?
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>
Tools > Templates
option