Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.10 KB | None | 0 0
  1. 1-computer with web browser,the internet and server are components of web.
  2. TCP/IP protocol are the communication between them.
  3.  
  4. 4-The characteristics of an HTML element is defined as attribute,which is placing within the element opening tag. Another characteristic of tag is using it as a start and end of an HTML element markup, in contrast an attribute is the definition for a property of an element Constitution of a value pair which is places inside the element start tag.
  5. an example <h1> Komar un </h1> is tag, but <h1 class="hama"> komar un</h1> because of this class, it's attributed.
  6.  
  7. 5-All HTML document require a title tag which is defines the title of the document. But a title in a browser toolbar is the definition of title element, which is is providing a title for the pages when it's added to the favorites.
  8.  
  9. 7-by this way <a href=“hama URL”>text that appears as link</a>  // ئەوەی ناو یەک پەیج ماوە <a href=“#hama URL”>text that appears as link</a>
  10.  
  11. 8-head tag is one of the simple tags within you can written information about the document
  12.  
  13. 9-<body>
  14. <center>
  15. <img src=“daniar.jpg” height=50width=100border=2alt=“komar un”>
  16. </center>
  17.   </body>
  18.  
  19. 10-Unordered list of items start with <ul> and end with </ul>
  20. like
  21.  <body>
  22. <ul>
  23. <li>
  24. kurd
  25. </li>
  26. </ul>
  27. </body>
  28.  
  29. but Ordered list of items start with <ol> and end with </ol>
  30. like
  31. <body>
  32. <ol>
  33. <li>
  34. kurd
  35. </li>
  36. </ol>
  37. </body>
  38.  
  39. 11- table tag is the Best way for arranging information in the space and controlling layout and It allows specification of arrangement of cells.
  40. -Align and bordera are table attributes .
  41. -<tr>  </tr>, specifies a table row.
  42. <td> Komar </td> specifies a table cells
  43. <th>Uni </th> specifies table heading.
  44.  
  45. -- like this example
  46.  
  47.  
  48. <table border=2>
  49. <tr>
  50. <th align=center>football </th>
  51. <th align=center>basktball</th> </tr>
  52. <tr>
  53. <td align=center>messi<</td>
  54. <td align=center>fabrigaz</td> </tr>
  55. <tr>
  56. <td align=center>ronaldo</td>
  57. <td align=center>piqe</td> </tr>
  58. </table>
  59.  
  60. 12- internal linking means correlate another page or another thing (you want it) by the home page or this page you want and by this way
  61. <head>
  62. <title> Komar </title>
  63. </head>
  64. <body>
  65. <h1> computer Science </h1>
  66. <p> Assignment </p> </br> <a href="#1"> Introduction </a></br>
  67. <a href="#2"> Chapter 1 </a></br>
  68. <a name="1">introduction</a>
  69. <p> This is a text </P>
  70. <a name="2"></a>
  71. <p> This is a text </P>
  72. </body>
  73.  
  74. 13-it is a list of coordinates relating to a specific image, and you can created in order to hyperlink areas of the image to different destinations.
  75.  
  76. 16-the text between <pre> tags has both its spaces and line break preserved in addition to being displayed in a fixed-width font so that reason it is importance.
  77. 17-input tag you can use or the type of form and text area tag use to row and cols type of form and label use for the kind of form .
  78. like this
  79. <form>
  80. <label for="email">Email:
  81. </label>
  82. <input type="email" id="email" name="email"/> <br/>
  83.   </form>
  84. 18-by this way <form>
  85. <label for="submit">submit
  86. </label>
  87.  
  88. <input type="submit" value="submit">
  89.  
  90. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement