My First Webpage

The code for the HTML webpage in Exhibit 25.1 follows the tree structure shown in Exhibit 25.0

My First Webpage
<!DOCTYPE html>
<html>
  <!-- Information (metadata) for browser -->
  <head>
    	<title>
		My First Webpage
	</title>
  </head>
  <!-- Content that goes on the webpage -->
  <body>
	<h1>Hello!</h1>
	<p>My name is Ashok.
	<a   href='https://www.ashokcharan.com/Contact/author.php'> website</a>.
  </body>
</html>

Exhibit 25.1 A simple webpage.


The webpage is a very simple introduction to Ashok. Here is a breakdown:

  • Title: "My First Webpage" (displayed in the browser tab)
  • Content:
    • A heading (h1) that says "Hello!"
    • A paragraph that says "My name is Ashok".
    • A link that says "website" and points to the URL "https://www.ashokcharan.com/Contact/author.php".

Overall, this is a basic webpage that could be improved by adding more information. An image, for instance, could be added with a style attribute specifying the height of the image and the left margin, and the src attribute specifying the source of the image:

<img style="max-height:200px; margin-left:20px;" 
    src="https://www.ashokcharan.com/images/ashok.jpg"> 
    


Previous    

Use the Search Bar to find content on MarketingMind.