Advertisement
LiveBacteria

Straight from the ide

Sep 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. This is how the code looks to me in dreamweaver and notepad++.
  2.  
  3. <!DOCTYPE HTML>
  4. <html>
  5. <head>
  6.     <title>First Site</title>
  7. </head>
  8. <body>
  9.     <aside>
  10.       <ul>
  11.         <!--ul stands for unordered list-->
  12.         <li>Home</li>
  13.         <!--li stands for list-->
  14.         <li> <a href="AboutMe.html">About Me</a> </li>
  15.         <li> <a href="http://google.com" target="_blank">Google</a></li>
  16.         <li> <a href="Schedule.html">Schedule</a> </li>
  17.       </ul>
  18.     </aside>
  19.     <h1>Saying Hello</h1>
  20.     <div>
  21.       <p>Hello my name is Tyler and this is an example of a div tag</p>
  22.     </div>
  23.     <section>
  24.       <h2>Section Example</h2>
  25.       <p>My last name is Poore. I identify as a male.</p>
  26.       <p>I live in California.</p>
  27.     </section>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement