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

Expanding System Volume C Drive of Windows Hyper-V Virtual Machine

There are three three steps to expand a disk of a virtual machine: Connect to…

PowerShell Script to Send Email

Use this newer method: https://blog.kimconnect.com/powershell-script-to-send-emails/ ### Variables section ###$fromaddress = "[email protected]"$toaddress = "[email protected]"$bccaddress = ""$CCaddress…

SQL Failover (Simple Method)

$servers="SQL01","SQL02","SQL03"; # Dynamic Credential method 1 $who = whoami if ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;} else…