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: Remove A-record in Bluecat

$bluecatUri='https://bluecat.kimconnect.com/Services/API' $bluecatUsername='bluecat-service-api' $bluecatPassword='SOMECOMPLEXPASSWORD' $hostRecord='testrecord.kimconnect.com' function loginBluecat{ param( $username, $password, $uri ) $proxy = New-WebServiceProxy -Uri…

How To Modify a Windows Service

Here's the freebie code: # Version 0.02 $serviceName='Windows_Exporter' $newExePath=$false $newSwitches=" --log.format logger:eventlog?name=$serviceName --collectors.enabled os,cpu,cs,logical_disk,net,tcp,service,textfile" function…

Methods to Embed JavaScript Codes into WordPress

Insert Headers and Footers Plugin - automatically apply script site wide Shortcoder Plugin - make…