Advertisement
ini_PlayeR

3_HTML INTRODUCTION

Mar 2nd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html> <!--Defines an HTML document-->
  3.     <head> <!--Defines information about the document-->
  4.         <title> <!--Defines a title for the document-->
  5.             Name it with your HTML title
  6.         </title>
  7.     </head>
  8.     <body> <!--Defines the document's body-->
  9.         <h1>Name it with your header with biggest font</h1> <!--"<h1> to <h6>"Defines HTML headings-->
  10.        
  11.         <!--It is defines a comment-->
  12.  
  13.         <h6>Name it with your header with smallest font</h6>
  14.         <!--"<h6>" is the smallest font for header-->
  15.         <h7>Name it with your header with the normal font</h7>
  16.         <br><br> <!--Inserts a double line break-->
  17.         <p>Name it with your first paragraph</p> <!--"<p>" defines a paragraph-->
  18.         Name it with your contents<br>
  19.         Name it with your contents<br><br>
  20.         <table border="1">
  21.         <!--"<table>" defines a table and (border="") defines what thick the table is -->
  22.             <tr> <!--"<tr>" defines a row in a table-->
  23.                 <td>Row 1, Column 1</td> <!--"<td>" defines a cell in a table-->
  24.                 <td>Row 1, Column 2</td>
  25.                 <td>Row 1, Column 3</td>
  26.             </tr>
  27.             <tr>
  28.                 <td>Row 2, Column 1</td>
  29.                 <td>Row 2, Column 2</td>
  30.                 <td>Row 2, Column 3</td>
  31.             </tr>
  32.         </table>
  33.         <table border="10">
  34.             <tr>
  35.                 <td>Row 3, Column 1</td>
  36.                 <td>Row 3, Column 2</td>
  37.                 <td>Row 3, Column 3</td>
  38.             </tr>
  39.             <tr>
  40.                 <td>Row 4, Column 1</td>
  41.                 <td>Row 4, Column 2</td>
  42.                 <td>Row 4, Column 3</td>
  43.             </tr>
  44.         </table>
  45.         <br>it is how to insert a image (copy with the type of file and in 1 folder with this html)<br>
  46.         <img src="Name it with your image name.png" height="150"/> <!--Defines an image-->
  47.     </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement