Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ***** index page ******
  2. <doctype html>
  3. <html>
  4. <head>
  5. <title>My webpage</title>
  6. <link href="main.css" rel="stylesheet" type="text/css">
  7. </head>
  8.  
  9. <body>
  10. <h1> Welcome! </h1>
  11. <ul>
  12. <li>Home</li>
  13. <li><a href="page 2.html">page 1</a> <br></li>
  14. <li><a href="page 3.html">page 2</a> <br></li>
  15. </ul>
  16.  
  17. </body>
  18. </html>
  19.  
  20. ********* css style ********
  21. body {
  22. background: #999;
  23. font-family: arial;
  24. }
  25.  
  26. h1, h2, p, li {
  27. color: #555;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement