1<!DOCTYPE html> 2<html> 3 <head></head> 4 <body> 5 <h3> 6 Include Id Test 7 </h3> 8 <div class="toc"> 9 <p> 10 <b>Table of contents</b> 11 </p> 12 <ul> 13 <li> 14 <a href="#c">Include without id</a> 15 </li> 16 <li> 17 <a href="#d">Include without id</a> 18 </li> 19 <li> 20 <a href="#e">Include with id</a> 21 </li> 22 <li> 23 <a href="#f">Include with id</a> 24 </li> 25 </ul> 26 </div> 27 <h2 id="a.simple_include"> 28 Simple include 29 </h2> 30 <h2 id="b.simple_include"> 31 Simple include 32 </h2> 33 <div id="c"> 34 <h3> 35 Include without id 36 </h3> 37 <h2 id="c.title__no_id"> 38 Title, no id 39 </h2> 40 </div> 41 <div id="d"> 42 <h3> 43 Include without id 44 </h3> 45 <h2 id="d.title__no_id"> 46 Title, no id 47 </h2> 48 </div> 49 <div id="e"> 50 <h3> 51 Include with id 52 </h3> 53 <h2 id="e.title_with_id"> 54 Title with id 55 </h2> 56 </div> 57 <div id="f"> 58 <h3> 59 Include with id 60 </h3> 61 <h2 id="f.title_with_id"> 62 Title with id 63 </h2> 64 </div> 65 </body> 66</html> 67