Posted On April 4, 2019

Basic CSS: Use Hex Code for Specific Colors

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Use Hex Code for Specific Colors
<style>
body {
background-color: black;
}
</style>

Leave a Reply

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

Related Post

Quick Script to Test SharePoint Online Credentials

$principle = "[email protected]" $password = 'PASSW0RT' $sharePointUrl = "https://SOMESHAREPOINT.COM/SitePages/Home.aspx" $credential=New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $principle,$(ConvertTo-securestring $password…

PowerShell: Replicate All Domain Controllers Immediately

<#Author: KimConnect.comVersion: 0.1Purpose:- After a change has been issued against a "logon server", that domain…

PowerShell: Sorting an Array of Strings as Numbers

This is a useful function to sort a list of computer names. The built-in sorting…