Guest User

Untitled

a guest
Oct 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Exercise 2</title>
  6. <style>
  7. .inner {
  8. background: #f38637;
  9. color: #f4934c;
  10. display: inline-block;
  11. font-size: 200%;
  12. padding: 13px 19.25px;
  13. margin-left: 2.1em;
  14. }
  15.  
  16. .outer {
  17. position: relative;
  18. border-bottom: 4px solid #f38637;
  19. width: 360px;
  20. display: inline-block;
  21. margin: 20px;
  22. margin-left: 0.4em;
  23. }
  24.  
  25. .C {
  26. position: absolute;
  27. color: #f38637;
  28. top: 17%;
  29. left: -5%;
  30. font-size: 10em;
  31. }
  32.  
  33. .up {
  34. color: #fff;
  35. position: absolute;
  36. top: 14%;
  37. left: 27%;
  38. font-size: 10em;
  39. }
  40.  
  41. .code {
  42. font-size: 10em;
  43. position: absolute;
  44. top: 14%;
  45. left: 82%;
  46. }
  47.  
  48. body{
  49. font-family: sans-serif;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div class="outer">
  55. <div class="C">
  56. C
  57. </div>
  58. <div class="up">
  59. up
  60. </div>
  61. <div class="code">
  62. code
  63. </div>
  64. <div class="inner">
  65. 1 0 0 0 0 1 1 <br>
  66. 1 1 1 0 0 0 0 <br>
  67. 1 1 0 0 0 1 1<br>
  68. 1 1 0 1 1 1 1<br>
  69. 1 1 0 0 0 0 0<br>
  70. 1 1 0 0 1 0 1<br>
  71. </div>
  72. </div>
  73. </body>
  74. </html>
Add Comment
Please, Sign In to add comment