Info Center has pages, examples, hints, and snippets on the various topics in the menu above. Explore and enjoy.
The correct HTML and css can truely bring a webpage to life. Fonts have a fantastic effect on webpages appearance. Some very slight enhancments such as a link's appearance changing when a mouse passes over creates a nice interactive effect. Font size, shadow and background can be created to respond to a mouse over. For example try THIS sentence.
This is an example of what created the paragraph above.
The HTML:
The correct HTML and css can truely bring a webpage to life. <span class="edu sz">Fonts have a fantastic effect on webpages appearance. </span> Some very slight enhancments such as a link's appearance changing when a mouse passes over creates a nice interactive effect. Font size, shadow and background can be created to respond to a mouse over.<span class ="HOV"> For example try THIS sentence.</span>
The CSS:
@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner&display=swap');
.HOV:hover { background-color: rgb(159, 208, 228); }
.Quick{ font-family: 'Quicksand', sans-serif; }
.edu{ font-family: 'Edu TAS Beginner', cursive;}
.sz:hover{ font-size:1.5em; }