Advertisement
Guest User

Jons Website HTML Skeleton

a guest
Dec 5th, 2019
894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Jon's Personal Webpage</title>
  8.     <link rel="stylesheet" type="text/css" href="css/style.css">
  9.     <link href="media/fontawesome/css/all.css" rel="stylesheet"> <!--load all fontawesome styles --></head>
  10. <body>
  11.     <div class="navbar">
  12.         <h1>Jons Personal Website</h1>
  13.         <a class="active" href="index.html"><i class="fa fa-fw fa-home"></i> Home</a>
  14.         <a href="about.html"><i class="fa fa-fw fa-user"></i> About Me</a>
  15.         <a href="blog.html"><i class="fa fa-fw fa-newspaper"></i> Blog</a>
  16.         <a href="social.html"><i class="fa fa-fw fa-globe-americas"></i> Socail Media</a>
  17.         <a href="contact.html"><i class="fa fa-fw fa-envelope"></i> Contact</a>
  18.       </div>
  19.  
  20.     <div class="contentbox">
  21.        
  22.     </div>
  23.     <div class="footer">
  24.         <p>Copyright 2013-2019 Jon</p>
  25.         <p class="p">The contents of this page may NOT be republished on this website without explicit permission from the owner. However, you are free to use the CSS Styling and <a href="src/skeleton.html">HTML skeleton</a> for this webpage.</p>
  26.     </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement