@font-face to load them locally using url function - css webcast6.css
Use new font name with font-family
Using DW is just click and find
DW css Designer --> font family property Select Manage fonts
Search for font using Adobe Edge Web Fonts dialog panel
Click to select, its automatically added as a font-family property option (listed at end)
DW adds custom javaScript code to file
This is a DW custom font
Google its three steps
Google Find Font, Get Code for downloading Font, use name in font-family: Monsieur La Doulaise
Can search for font using search name, or features, Click Download Link
In CSS file use downloaded link @import url('https://fonts.googleapis.com/css?family=Italiano'); I'm using link tag for the above font.
Using a link tag, inside your head block before CSS has an advantage that the browser inspect element will show you when file doesn't load.
<link href="google fontlocation"
rel="stylesheet" type="text/css" property="forValidation" > - PS google does have a copy code dailog panel
Can store font locally or recommended on CDN
With web-fonts we often specify the default font-weight and style in the @font-face (e.g., bold blood dracula, italic, etc)
On Google when you click to use a font, you have options for various default font-variants (400 and 700 weight), Click Link for CDN link to Font - Always test, google quick methods have not always worked always.
Adding Color
color:#f00 Red (Red Green Blue);
color:#00ff00 - Using all Sixteen digits; True is 24bits, 3*8=24bits
color:rgb(0,0,250); blue;
color:rgba(0,0,250,0.5) 4th is alpha 1.0 is oblique, 0 is transparent;
color:skyblue; Use X11/CSS Color names - only a few descrepanices between X11 and CSS/w3c names, CSS uses all lower-cases no word sperators (CC 2017 has code completion access)
Can also use HSL hue (color) Saturation (amount of color) Lumonsity (amount of light); DW has option
font-size
font-size:1em;
font-size:1.5em; 50% larger than width of capital M
font-size:150%
font-size:large, 20% above normal
font-size:1.5rem; Root Width of Capital M, root element is html tag font-size
Basic text-shadow: -2px -2px 2px #aaa; Gray shadow horizontal back 2px; vertical up 2px; blur 2px, note upper left corner of text is 0,0, -2px is before text
text-shadow: -4px 4px 3px #999999; x horizontal is -4px back, y vertical is 4 px below;