Daryan997

exam_web

Oct 8th, 2020
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. پرسیاری یەکەم:
  2. 1. D
  3. 2. C
  4. B ژمارەی لێنەیاوە
  5. 3. A
  6. 4. B
  7. 5. B
  8. 6. C
  9. 7. A
  10. 8. D
  11. 9. D
  12. 10. C
  13.  
  14. پرسیاری دووەم:
  15. ئەوەی یەکەم خەتی بە ژێرا بێنە و ڕاستەکەی بنووسەوە
  16. 1. False / US military => Advanced Research
  17. 2. False / .ecss => .css
  18. 3. False / Color (یەکەم) => background-color
  19. 4. True
  20. 5. True
  21.  
  22. پرسیاری سێیەم:
  23. 1.
  24.     <style>
  25.         html {
  26.             background-image: url("image.png");
  27.         }
  28.     </style>
  29.  
  30. 2.
  31. <p style="background-color: red;">Hello</p>
  32.  
  33. 3.
  34. <style>
  35. .c1 {
  36. background-color: azure;
  37. }
  38. .c2 {
  39. color: black;
  40. }
  41. </style>
  42. <p class="c1 c2 c3">Hello</p>
  43.  
  44. 4.
  45. <style>
  46. tr th {
  47. color: aquamarine;
  48. background-color: teal;
  49. }
  50. th {
  51. text-align: left;
  52. padding: 10px 100px 10px 10px;
  53. }
  54. td {
  55. padding: 10px 100px 10px 10px;
  56. }
  57. table {
  58. background-color: lightseagreen;
  59. border-color: teal;
  60. }
  61. .white {
  62. background-color: white;
  63. }
  64. .grey {
  65. background-color: lightgrey;
  66. }
  67. </style>
  68. <table border="1">
  69. <tr>
  70. <th>Firstname</th>
  71. <th>Lastname</th>
  72. <th>Age</th>
  73. </tr>
  74. <tr class="white">
  75. <td>Ahmad</td>
  76. <td>Aziz</td>
  77. <td>15</td>
  78. </tr>
  79. <tr class="grey">
  80. <td>dilan</td>
  81. <td>sdiq</td>
  82. <td>25</td>
  83. </tr>
  84. <tr class="white">
  85. <td>raz</td>
  86. <td>hiwa</td>
  87. <td>24</td>
  88. </tr>
  89. </table>
  90.  
  91. 5.
  92. <h1>HTML Forms</h1>
  93. <form>
  94. First name: <br>
  95. <input type="text"> <br>
  96. Last name: <br>
  97. <input type="text"><br><br>
  98. <input type="submit" value="Submit">
  99. </form>
  100.  
  101. پرسیاری چوارەم:
  102. <!DOCTYPE html>
  103. <html>
  104. <head>
  105. <title>Page</title>
  106. <style>
  107. .title {
  108. background-color: yellow;
  109. text-align: center;
  110. margin: 0 0 2% 0;
  111. }
  112. .middle {
  113. display: flex;
  114. }
  115. .footer {
  116. text-align: center;
  117. }
  118. .menu {
  119. padding-right: 10%;
  120. }
  121. .posts {
  122. padding: 0 40% 0 1%;
  123. border-left: 1px solid green;
  124. }
  125. .last {
  126. padding: 20px;
  127. height: 100%;
  128. margin: 0;
  129. border: 3px dotted green;
  130. }
  131. </style>
  132. </head>
  133. <body>
  134. <h1 class="title">My blog about my life</h1>
  135. <div class="middle">
  136. <div class="menu">
  137. <h2>Menu</h2>
  138. <a href="#">Today</a><br>
  139. <a href="#">Yesterday</a><br>
  140. <a href="#">Last week</a><br>
  141. <a href="#">Archives</a>
  142. </div>
  143. <div class="posts">
  144. <h1>Meeting with supervisor</h1>
  145. <p><b>14 Dec 2011</b></p>
  146. <p>Today I went to the university by bus.</p>
  147. <p>I had a met with my PhD supervisor.</p>
  148. <h1>New car!!!</h1>
  149. <p><b>12 Dec 2011</b></p>
  150. <p>Today I bought my new car. It's a Honda Accord and it's really nice.</p>
  151. <p>I met some friends at a pub</p>
  152. <h1>Visit my parents</h1>
  153. <p><b>10 Dec 2011</b></p>
  154. <p>Tried to contact my PhD supervisor. He was out of his office.</p>
  155. <p>I visited my parents and we had a nice dinner together.</p>
  156. </div>
  157. <div class="last">
  158. <h1>Last posts</h1>
  159. <a href="#">Meeting with supervisor</a><br>
  160. <a href="#">New car!!!</a><br>
  161. <a href="#">Visit my parents</a>
  162. </div>
  163. </div>
  164. <div class="footer">Contact me: <a href="mailto:email@something.com">email@something.com</a></div>
  165. </body>
  166. </html>
Add Comment
Please, Sign In to add comment