Posted On April 4, 2019

Basic CSS: Prioritize One Style Over Another

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Prioritize One Style Over Another
<style>
body {
background-color: black;
font-family: monospace;
color: green;
}
</style>
<h1>Hello World!</h1>

Leave a Reply

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

Related Post

HAProxy with Multiple SSL Certs

Method 1: --------- defaults   log 127.0.0.1 local0   option tcplog   frontend ft_test   mode http   bind…

PowerShell: Synchronize Files Between Different Domains

<# File_Copy_Script_UNC_to_Local_V0.1.ps1Purpose: connect to an external domain to copy files onto a Intranet server.Features:- Synchronize…

Generate an XML file from MySQL

This is a silly little snippet has been being generated by the venerable ChatGPT website…