Posted On May 7, 2019

HTML: Basic Anatomy of A Page

kimconnect 0 comments
blog.KimConnect.com >> Codes >> HTML: Basic Anatomy of A Page

Modern browsers discern the type of documents being loaded; thus, it is necessary to tag pages with their appropriate types. While at it, let’s take a look at basic layout of an HTML file. No further explanations are necessary.

<!DOCTYPE html>
<html>
  <head>
    <!-- metadata elements linkmetatitle, and style -->
  </head>
  <body>
   <!-- page contents tr, td, h1h2div, pa, etc-->
  </body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Test URL for Reachability

function testUrl($url){ try{ $HTTP_Request = [System.Net.WebRequest]::Create($url) $HTTP_Response = $HTTP_Request.GetResponse() [int]$HTTP_Status = [int]$HTTP_Response.StatusCode If ($HTTP_Status -eq…

Basic HTML and HTML5: Create a Form Element

<h2>CatPhotoApp</h2><main><p>Click here to view more <a href="#">cat photos</a>.</p><a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying…

WordPress Code Snippet Crashed My Site

Error Message: ParseError thrown syntax error, unexpected '$', expecting variable (T_VARIABLE) Resolution:1. If still login…