Advertisement
IT-Academy

JS DOM

May 25th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3. <head>
  4.     <title>JS DOM</title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8.  
  9.     <h1 id="heading" name="text">DOM</h1>
  10.    
  11.     <p id="paragraph1" name="text">
  12.         <b name="text">Document object model</b>
  13.  
  14.     </p>
  15.     <p id="paragraph2">
  16.         <b> first text </b> <br />
  17.         <b> second text </b>
  18.     </p>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement