what does a tags a stands for in html code example

Example 1: what does the html tags mean in html

<!DOCTYPE html>
<html>
  <!-- your code here -->
</html>


<!-- html tag is a non-self closing tag in html, it represents the beginning
     and end of your entire code.All the other tags, elements, attributes,etc.
     comes between html tags.

     The HTML <doctype> tag is used to tell the browser which version of
     HTML the document is using. It has no end tag (self-closing tag).
	 For HTML5 version we write <!DOCTYPE html>.
-->

Example 2: how to use tags

--------------------------------------------------------------------

What is your tag strategy in Cucumber?
	- I create different testing suites 
      using different tags.
	- We can use multiple tags in the same
      feature file to have the same feature file
      be part of different testing suites as well.

	- for ex:

	Feature #1:
		@Smoke @Regression @abc

- We use the "and - or - and not" keywords
  to include or exclude specific tags from test runtime.

Tags:

Html Example