source: https://moz.com/blog/why-google-analytics-tagging-matters-whiteboard-friday
Test Questions
- Name 1 block element.
- Name 1 inline element.
- What is the difference between an inline element and a block element?
- What is the difference between an ID and a CLASS? When is it appropriate to use each?
- Describe and/or write the code for an inline style.
- Describe and/or write the code to link an external stylesheet.
- Describe and/or write the code for an embedded style.
- What is a contextual selector?
- What is a class selector?
- What is a child selector?
- What is a sibling selector?
- Describe 1 technique to center a layout in a browser.
- Describe the differences between a fixed and liquid layout.
- Describe a technique to position 2 columns so they sit next to each other.
- Write the css code that will force a block element (e.g., div) to fall below a series of floated block elements?
- What is the most important tag on a page for search engine optimization?
- Describe why duplicate content is a concern for search engine spiders?
- Describe one strategy to resolve a duplicate content issue.
- Describe when it best to use the “font-weight:bold” style, when it is best to use an <h2> tag, and when it is best to use the <strong> tag.
- Write the css and html for a 3-column fixed layout. You must specify a header, footer, main content, secondary content, sidebar.
- Write the css and html for a 2-column liquid layout. You must specify a header, footer, main content, sidebar.
Video Test
Kionic Awards: Spring 2013
Most Promising New Designer
- Nataly Villanueva
- Eva Cruz
- Ben Carte
- Faith Serra
- Monique Blount
- Louisa Garcia
- Jamel Parnell (winner)
Best Website
- Travis Montalvo
- Jie Quan Chen
- Sarai Garcia
- Patricio Hendricks
- Braulio Collado
- Kelechi Honore
- Pamela Valentin (winner)
- Juan Vargas
- Ira Santiago
Congratulations to Jamel Parnell and Pamela Valentin and all the students for the fine work they have done on the web designs and development.
Google Analytics Event Tracking Real-Time Buggy
After much too much time figuring out how to implement event tracking on Google Analytics Universal, I think that perhaps I’ve come to something of a conclusion— its “beta” and buggy.
The code that I used to implement it on a link was as follows:
<a href="#" onclick="ga('send', 'event', 'button', 'click', 'nav buttons', 4);"> Link Text </a>
The first issue, was understanding how the code needed to be written as compared to the syntax for event tracking in Google Analytics classic. I must admit I’m not a javascript guru, so I rely on documentation. The code above hopefully will save someone some time.
The second thing was that once implemented, it doesn’t work consistently across all browsers. At least I couldn’t get it to work, until I found a post that suggested that I install Google Analytics Debugger. As soon as I installed it, the event tracking in real-time worked across Firefox, Safari, and Chrome, (where before that, the tracking was only working in Firefox.) When I say it’s working across all browsers, I don’t mean consistently. It works if I try really hard to make it work… patiently waiting for the browser to be fully active, checking the real-time overview to make sure it sees me, and then test the event.
I would say it was just me or my computer, but this inconsistency problem was happening with my students, where some students had it working across browsers, and others only one browser.
