index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>hmjStudios llc</title>
  5. <!-- <link rel="stylesheet" url="css/custom.css"> -->
  6. <link href="https://fonts.googleapis.com/css?family=Raleway|Pacifico" rel="stylesheet">
  7. </head>
  8. <body>
  9. <style>
  10. #main {
  11. font-family: 'Raleway', sans-serif;
  12. content: "";
  13. background: url(/background.jpg);
  14. background-repeat: no-repeat;
  15. background-position: center center;
  16. background-size: 20%;
  17. opacity: 0.5;
  18. top: 0;
  19. bottom: 0;
  20. left: 0;
  21. right: 0;
  22. position: absolute;
  23. z-index: -1;
  24. }
  25. </style>
  26. <div id=main>
  27. <center><h1 style="font-family: 'Pacifico', cursive;">hmjStudios llc</h1></center>
  28. <table border=0 cellpadding=0 width=100% valign=top>
  29. <tr>
  30. <td width=20% valign=top>
  31. <!-- Left List -->
  32. <h4><a href="http://hmjstudiosllc.com">Main</a></h4>
  33. {{ range first 10 .Data.Pages }}
  34. <h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
  35. {{ end }}
  36. </td>
  37. <td width=60% valign=top>
  38. <!-- Center Data -->
  39. Welcome to hmjStudios llc.
  40. </td>
  41. <td width=10% valign=top>
  42. <!-- Right Contact Info -->
  43. <u><h4>Contact Info</h4></u><br>
  44. Heather Johnston<br>
  45. <a href="mailto:hmjstudiosllc@gmail.com">hmjstudiosllc@gmail.com</a><br>
  46. Sterling, Virginia
  47. </td>
  48. </tr>
  49. </table>
  50. </div>
  51. </body>
  52. </html>