Advertisement
Guest User

Untitled

a guest
Jun 12th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="description" content="This is Mido's Site">
  7. <title>MiDo's First Page</title>
  8. <style>
  9. <!--p{color:red}-->
  10. table td {text-align:center};
  11. </style>
  12. <link rel="stylesheet" href="style.css">
  13. <script>
  14. function sayHello()
  15. {
  16. alert("HELLO GUYS");
  17. }
  18. </script>
  19. </head>
  20.  
  21. <body>
  22. <!--<h1 >Story Title</h1>
  23. <p id=lol>HTML</p>
  24. <p>This is my first text This is my first text This is my first text This is my first text</p>
  25. <h3>Chapter 2</h3>
  26. <p>This is my first text This is my first text This is my first text This is my first text</p>
  27. <p>This is my first text This is my first text This is my first text This is my first text</p>
  28. <p>This is my first text This is my first text This is my first text This is my first text</p>
  29. <h3>Chapter 2</h3>
  30. <p>This is my first text This is my first text This is my first text This is my first text</p>
  31. <p>This is my first text This is my first text This is my first text This is my first text</p>
  32. <a href="#lol" target="#lol">google</a>-->
  33.  
  34. <h2>Unordered List </h2>
  35. <ul>
  36. <li>HTML</li>
  37. <li>CSS</li>
  38. </ul>
  39.  
  40. <h2>Ordered List </h2>
  41.  
  42. <ol>
  43. <li>HTML</li>
  44. <li>CSS</li>
  45. </ol>
  46.  
  47. <h2>Description List</h2>
  48.  
  49. <dl>
  50. <dt>HTML</dt>
  51. <dd>HTML tany</dd>
  52. <dd>HTML talet</dd>
  53. </dl>
  54. <p>This is my research</p>
  55. <blockquote> <!--for long quotes-->
  56. This is the quote i found This is the quote i found This is the quote i found This is the quote i found
  57. </blockquote>
  58. My research continued
  59. <q>Hello there</q>
  60. <br>
  61. <p><mark>Mido</mark> is the best</p>
  62. <p>this is <del>Deleted text</del> and this is <ins>inserted text</ins></p>
  63. <p>I born On 6<sup>th</sup> Jun 1997, Water Element is H<sub>2</sub>O</p>
  64.  
  65. <table border="1">
  66. <caption>Webhost Plans</caption>
  67. <thead> <!-- head of table-->
  68. <tr>
  69. <td>Plans</td>
  70. <td>Plan 1</td>
  71. <td>Plan 2</td>
  72. <td>Plan 3</td>
  73. </tr>
  74. </thead>
  75.  
  76. <tbody> <!-- body of table-->
  77. <tr>
  78. <td>H.D.D</td>
  79. <td>15 GB</td>
  80. <td>30 GB</td>
  81. <td>60 GB</td>
  82. </tr>
  83. <tr>
  84. <td>Domains</td>
  85. <td>1</td>
  86. <td>2</td>
  87. <td>5</td>
  88. </tr>
  89. <tr>
  90. <td>Databases</td>
  91. <td>5</td>
  92. <td>10</td>
  93. <td>Unlimited</td>
  94. </tr>
  95. </tbody>
  96.  
  97. <tfoot> <!-- footer of table-->
  98. <tr>
  99. <td>Price</td>
  100. <td>$5</td>
  101. <td>$10</td>
  102. <td>$15</td>
  103. </tr>
  104. </tfoot>
  105. </table>
  106. <br>
  107. <table border="1">
  108. <Caption>ColSpan</caption>
  109. <thead>
  110. <tr>
  111. <th colspan="2">Programming</th>
  112. <th colspan="4">Design</th>
  113. </tr>
  114. </thead>
  115.  
  116. <tbody>
  117. <tr>
  118. <td>PHP</td>
  119. <td>MySQL</td>
  120. <td>HTML</td>
  121. <td>CSS</td>
  122. <td>JavaScript</td>
  123. <td>JQuery</td>
  124. </tr>
  125. <tbody>
  126. </table>
  127. <br>
  128.  
  129. <table border="1">
  130. <Caption>Rowspan</caption>
  131. <thead>
  132. <tr>
  133. <th>Name</th>
  134. <th>Email</th>
  135. </tr>
  136. </thead>
  137.  
  138. <tbody>
  139. <tr>
  140. <td rowspan="3">Mohamed</td>
  141. <td>mm@yahoo.com</td>
  142. <!--<td>mm2@yahoo.com</td>-->
  143. </tr>
  144. <tr>
  145. <td>ss@yahoo.com</td>
  146. </tr>
  147. <tr>
  148. <td>ss22@yahoo.com</td>
  149. </tr>
  150. <tr>
  151. <td >koko</td>
  152. <td>mm2@yahoo.com</td>
  153. </tr>
  154. <tbody>
  155. </table>
  156.  
  157. <br>
  158. <p>Register form</p>
  159. <!-- action="post.php" // method="get/post" --> <!--action(L saf7a ly hyro7 3leha l motsaf7) -- -->
  160. <form name="Register">
  161.  
  162. <label>Username:</label>
  163. <input type="text" name="username" maxlength="15">
  164. <br>
  165. <label>Password:</label>
  166. <input type="password" name="password">
  167. <br>
  168. <label>Email:</label>
  169. <input type="text" name="email">
  170. <br>
  171. <input type="checkbox">
  172. <label>Remember Me!</label>
  173. <input type="submit">
  174. <input type="button" name="sayHello" value="Say Hello" onclick="sayHello()"> <!--will be used mostly in programming-->
  175.  
  176.  
  177.  
  178. </form>
  179.  
  180. </body>
  181.  
  182. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement