Posted On April 4, 2019

Basic CSS: Use RGB values to Color Elements

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Use RGB values to Color Elements
<style>
body {
background-color: #F00;
}
</style>

Leave a Reply

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

Related Post

PowerShell: Get All Hyper-V Servers in the Domain or Forest

This is a working version to correct my previous codes posted somewhere on this site…

PowerShell: Get Size On Disk and Discover Largest Files in a Given Directory

# getSizeOnDisk-v0.01.ps1# Set variables$parentDirectory="C:\"$depth=4$topX=10$excludeDirectories="C:\Windows","C:\Program Files","C:\Program Files (x86)"$clusterSizeOfNetworkShare=8192# sanitateif($depth -le 1){$depth=1}################################## Excuting Program as an Administrator…

PowerShell: Obtain Domain Admin Credential

This little snippet is reusable as an appendix to other scripts since Domain Admin access…