<title> Tag

<title> Title of the webpage </title>

Body Tag

<body> 

Body tag for content visible to user

 </body

head tag

<html>

<head>

    <title> Title of the webpage </title>

    <meta charset="utf-8" >

    <base href="https://tutorial.techaltum.com/htmlTags.html">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <meta name="keywords" content="Keywords">

    <meta name="description" content="Search Description">

    <link href="css/style.css" rel="stylesheet">

    <style><style/>

    <script><script/>

</head>

<body> 

      Body Content

</body> 

</html>

HTML

<html>

  (all other page elements go here)

</html>

body tag

<body>

  (all page content goes here)

</body>

<P> Tag

<p>My cat Lucky has a lot of adventures. Yesterday she caught a mouse, and this morning she caught two!</p>

Anchor Tag (Hyyper Link)


<a href="http://www.example.com/">Visit this great website!</a>

image

<img src="myphoto.jpg" alt="My Photo">