Tags in HTML5-part3

Tags in HTML5-part3

HTML5 we continue where we left off.

<strong> tag

It is one kind of text formatter used to bold the text.

This is &lt;strong&gt;important&lt;/strong&gt;.

<style> tag

The HTML <style> tag is used for declaring style sheets within your HTML document.

&lt;style type="text/css"&gt;
 h1 {color:red}
 p {color:blue}
 &lt;/style&gt;

<sub> tag

The HTML sub tag is used for subscript text

&lt;p&gt;The HTML sub tag is used for &lt;sub&gt;subscript text&lt;/sub&gt;&lt;/p&gt;.

<summary> tag

The HTML <summary> tag indicates a rundown/subtitle that can be utilized related to the HTML5 <details> tag. This synopsis/inscription can be tapped on to summary/caption  the points of interest as required.

&lt;details&gt;
 &lt;summary&gt;company&lt;/summary&gt;
 &lt;p&gt;QualityPoint Technologies&lt;/p&gt;
 &lt;/details&gt;

<table> tag

The HTML <table> tag is utilized for characterizing a table. The <table> tag contains different labels that characterize the structure of the table.
<td> tag :
Table Definition –used to define table header.
<tr> tag
Table row –Used to specify the start and end of each row in a table.

&lt;table border = "1"&gt;
 &lt;tr&gt;
 &lt;td&gt;Name &lt;/td&gt;
 &lt;td&gt;Roll&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/table&gt;

<textarea> tag

The HTML textarea component enables the client to enter in excess of one line in the textbox. The inputbox ought to be fittingly coded with the stature and width of the textbox.

&lt;textarea rows="5" cols="25"&gt;Enter your view s here.&lt;/textarea&gt;

<tfoot> tag

<tfoot> tag is used to group the footer content in the HTML table.They should be used along with the <thead> and < tbody> .
<thead> tag
<thead> tag is used to group the header elements in the HTML table.

&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Name&lt;/th&gt;
 &lt;th&gt;Roll Nimber&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tfoot&gt;
 &lt;tr&gt;
 &lt;td&gt;Sam&lt;/td&gt;
 &lt;td15&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tfoot&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;Anderson&lt;/td&gt;
 &lt;td&gt;48&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
 &lt;/table&gt;

<time> tag

The HTML <time> tag is used for declaring the date and/or time within an HTML document.

&lt;p&gt;On Saturdays, we open at &lt;time&gt;09:00&lt;/time&gt;.&lt;/p&gt;

<title> tag

The HTML <title> tag is used for declaring the title, or name, of the HTML document.This would normally appear at the browsers title bar.

&lt;html&gt;
 &lt;head&gt;
 &lt;title&gt;Learn HTML5&lt;/title&gt;
 &lt;/head&gt;

<video> tag

The HTML5 <video> tag is used to specify video on an HTML document. For example, you could embed a music video on your web page for your visitors to listen to and watch.

&lt;video src=" video source  " width="300" height="150" controls&gt;