0% found this document useful (0 votes)
27 views2 pages

HTML

The document contains various HTML elements including headings, paragraphs, links, images and tables.

Uploaded by

sameer patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views2 pages

HTML

The document contains various HTML elements including headings, paragraphs, links, images and tables.

Uploaded by

sameer patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<h1>This is heading 1</h1>

<p>This is a paragraph.</p>
_______________________________________________________________________
<a href="https://www.w3schools.com">This is a link</a>
_______________________________________________________________________
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
_______________________________________________________________________
<body style="background-color:powderblue;"> </body>
<h1 style="background-color:powderblue;">This is a heading</h1>
_______________________________________________________________________
<table style="width:100%">
<tr>
<th>Name</th>
<td>Jill</td>
</tr>
<tr>
<th rowspan="2">Phone</th>
<td>555-1234</td>
</tr>
<tr>
<td>555-8745</td>
</tr>
</table>
Output:

_______________________________________________________________________
<table>
  <tr>
    <th colspan="2">Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>43</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>57</td>
  </tr>
</table>
Output:

__________________________________________________________________________________

You might also like