Advertisement
ambosdavid

Template Portfolio

Mar 8th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!-- David Ambos, 2018 -->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Template Portfolio</title>
  7. <style type="text/css">
  8. body {
  9. background-color: rgba(116,114,115,1);
  10. }
  11. body,td,th {
  12. color: rgba(0,0,0,1);
  13. }
  14. .transback {
  15. opacity: 0.6;
  16. }
  17. </style>
  18. </head>
  19.  
  20. <body onload="resize();" onResize="resize();" style="text-align: center">
  21. <h1>David Ambos's Portfolio</h1>
  22. <h3>(Press a Button to display my work.)</h3>
  23. <hr>
  24. <button style="border: 3px solid red; background-color: black; border-radius: 10px; color: white; padding: 5px; font-size: 16px;" onClick="resize(); document.getElementById(&quot;iframe&quot;).src = &quot;../fileName/siteName.html&quot;;">~Website Name~</button>
  25. <br>
  26. <iframe id="iframe" style="position: fixed; left: 75px; top: 175px;"></iframe>
  27. <script>
  28. function resize() {
  29. document.getElementById("iframe").width = (window.innerWidth - 175) + "px";
  30. document.getElementById("iframe").height = (window.innerHeight - 225) + "px";
  31. }
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement