Code HTML
Page mise à jour le 06-01-2026 à 23:21
<!-- squelette de page -->
<!doctype html>
<html>
<head>
<title>New Site</title>
<meta name="identifier-url" content="https://fqdn/">
<meta name="publisher" content="New Site">
<meta name="keywords" content="word1, word2">
<meta name="revisit-after" content="30 day">
<meta name="robots" content="noarchive">
<meta name="author" content="Philippe DESLOGES">
<meta name="copyright" content="Philippe DESLOGES">
<meta name="description" lang="fr" content="New Site">
<meta name="content-type" content="UTF-8">
<meta name="content-language" content="fr">
<link rel ="shortcut icon" href="images/favicon.png">
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
<script src="scripts.js"></script>
</html>
<!-- squelettes de liens -->
<a href='url' target='_blank'><button>ACTION</button></a>
<a file='path' target='_blank'><button>ACTION</button></a>
<!-- squelette de formulaire -->
<form method='post' action='index.html'>
<input type='hidden' id='hidden' name='hidden' value='HIDDEN'>";
<input type='submit' id='submit' name='submit' value='SUBMIT'>";
<input type='button' id='button' name='button' value='BUTTON'>";
<input type='text' id='text' name='text' value='TEST'>";
<input type='password' id='password' name='password' value='PASSWORD'>";
<input type='radio' id='radio-1' name='radio' value='RADIO-1'>";
<input type='radio' id='radio-2' name='radio' value='RADIO-2'>";
<input type='checkbox' id='checkbox' name='checkbox' value='CHECKBOX'>";
<select id='select' name='select'>";
<option value='option-1'>OPTION-1</option>";
<option value='option-2'>OPTION-2</option>";
</select>
<textarea name='textarea' cols=50 rows=5 value='textarea'>TEXTAREA</textarea>
</form>
<!-- options communes -->
disabled
<!-- options pour text et textarea -->
placeholder='suggestion'
<!-- options pour select -->
selected
<!-- options pour radio et checkbox -->
checked
<!-- événements javascript -->
onClick onChange onKeyPress onKeyDown onKeyUp onFocus
<!-- actions javascript -->
onEvent='select();'
onEvent='fonction();'
onEvent='this.form.submit();'
onEvent='fonction();'
<!-- squelette de tableau -->
<table border='0' align='center' width='100%' cellpadding='0' cellspacing='0'>
<thead>
<tr>
<th>
</th>
</tr>
<thead>
<tr>
<td align='center' width='100'>
</td>
</tr>
<tfoot>
<tr>
<th>
</th>
</tr>
</tfoot>
</table>