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

CSS: Variables & Simple Animation

CSS can mimic other interpreted programming languages by enabling features such as variables. The limitation…

PowerShell: Unjoin Computer From Domain

# unjoinComputerFromDomain.ps1 # Version 0.02 # Notes: # - This function doesn't delete the referenced…

PowerShell: Disable Windows Hello

function disableWindowsHello{ $regHive='REGISTRY::HKLM\SOFTWARE\Policies\Microsoft\PassportForWork' $refreshEnv=$false if (!(Test-Path $regHive)){ Write-Host "Creating registry path $regHive" New-Item -Path $regHive…