1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<html>
<head>
<style>
/* table des matières */
.tableDesMatieres a:link, .tableDesMatieres a:visited {
font-family: helvetica, sans-serif;
color: red;
text-decoration: none;
font-size: 10pt;
}
.tableDesMatieres a:hover, .tableDesMatieres a:active {
font-family: helvetica, sans-serif;
color: black;
text-decoration: underline;
font-size: 10pt;
background-color: black;
}</style>
</head>
<body>
<div class="tableDesMatieres">
<ul>
<li><a href="#Abstract">Abstract</a></li>
<li><a href="#Introduction">Introduction</a></li>
<li><a href="#Results">Results</a></li>
</ul>
</div>
</form>
</body>
</html> |