Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. <style id="jsbin-css">
  8. .body{
  9. background-color:white
  10. }
  11. .header {
  12. color:Green;
  13. }
  14. .courseTitle {
  15. font-style: italic;
  16. font-size: 16px;
  17. }
  18. .LabTitle {
  19. font-size: 14px;
  20. color:Red;
  21. }
  22. p > strong{
  23. color:cornflowerBlue;
  24. }
  25. line {
  26. stroke:cornflowerblue;
  27. stroke-width: 5px
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <h2 class="header">Nathan B. Caplan</h2>
  33. <h3 class="header"><color="green">nbc270</h3>
  34. <hr>
  35. <p class="courseTitle">Data Visualization</p>
  36. <p class="LabTitle">Lab 1</p>
  37. <hr>
  38. <p>This is my <strong>first </strong><em><strong>HTML</strong></em></p>
  39.  
  40. <svg width="400" height="400">
  41. <!-- <circle cx="50" cy="50" r="28" style ="fill:cornflowerblue; stroke:red; "/>
  42.  
  43. <path d="M 200 10 L 300 10 L 300 50 Z"
  44. style="fill:none; stroke:red; stroke-width:5px;"/>
  45. -->
  46. <rect x="0" y="0" width="180" height="200" style="fill:orange; stroke-width:3px; stroke:black" /></rect>
  47. <g transform="rotate(20) translate(85,40)">
  48. <line x1="5" y1="50" x2="5" y2="100"></line>
  49. <line x1="5" y1="50" x2="50" y2="100"></line>
  50. <line x1="50" y1="50" x2="50" y2="100"></line>
  51. </g>
  52.  
  53. <circle cx="100" cy="75" r="28" style ="fill:none; stroke:cornflowerblue; stroke-width:5px "/>
  54. <rect x="110" y="10" width="50" height="100" style="fill:orange; stroke=white" /></rect>
  55. <circle cx="50" cy="50" r="20" style ="fill:yellow; stroke:purple; "/>
  56. <svg>
  57.  
  58.  
  59. <script id="jsbin-source-css" type="text/css">.body{
  60. background-color:white
  61. }
  62. .header {
  63. color:Green;
  64. }
  65. .courseTitle {
  66. font-style: italic;
  67. font-size: 16px;
  68. }
  69. .LabTitle {
  70. font-size: 14px;
  71. color:Red;
  72. }
  73. p > strong{
  74. color:cornflowerBlue;
  75. }
  76. line {
  77. stroke:cornflowerblue;
  78. stroke-width: 5px
  79. }
  80. </script>
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement