Subscribe Us

Header Ads

HTML

 

HTML 

HTML Semantic Elements









Basic Syntax

<!DOCTYPE html>

<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>Heading</h1>
<p>paragraph.</p>

</body>
</html>


Link

<a href="https://www.anilsainaidu.blogspot.com.com">link Title</a>

IMAGE

<img src="Picture.jpg" alt="anil blog" width="1920" height="1080">

Comment line

<!-- Write your comments here -->

IFRAME

<iframe src="index.html" height="200" width="300" title="index"></iframe>


Responsive

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">


<style>
div 
{
  background-image: url('img_girl.jpg');
}
</style>

TABLE
 

<table>
  <tr>
    <td>A</td>
    <td>B</td>
    <td>C</td>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>


<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>






<table>Defines a table
<th>Defines a header cell in a table
<tr>Defines a row in a table
<td>Defines a cell in a table
<caption>Defines a table caption
<colgroup>Specifies a group of one or more columns in a table for formatting
<col>Specifies column properties for each column within a <colgroup> element
<thead>Groups the header content in a table
<tbody>Groups the body content in a table
<tfoot>Groups the footer content in a table

<abbr>Defines an abbreviation or acronym
<address>Defines contact information for the author/owner of a document
<bdo>Defines the text direction
<blockquote>Defines a section that is quoted from another source
<cite>Defines the title of a work
<q>Defines a short inline quotation

<ul>Defines an unordered list
<ol>Defines an ordered list
<li>Defines a list item
<dl>Defines a description list
<dt>Defines a term in a description list
<dd>Describes the term in a description list




Post a Comment

0 Comments