Interface Web Foundations Class 4 Resources

To make your text behave around images, we introduced floats. Also, there’s a tool for checking your current devices capabilities. Ellie shared some AIM-related links, and we talked about MySpace and Ze Frank.
- All About Floats (more CSS Tricks)
- Cybercrimes Seminar by the Chamber and FBI (thanks, Ellie)
- Palm Reader for checking your devices CSS queries
- DesignBetter for website design (thanks, Bridget)
- Events and Meetups listed by AIM (thanks, Ellie)
- The Show by Ze Frank about MySpace and design
- The Earth Sandwich by Ze Frank
Lastly, when discussing the much maligned <blink> tag, Brendan showed us how we could roll our own:
<div class="blink_me">Your Text here.</div> .blink_me { animation: blinker 1s linear infinite; } @keyframes blinker { 50% { opacity: 0; } }