본문 바로가기

반응형

전체 글

(522)
Google Ads Remarketing Tag Setup Let’s see how to implement Google Ads remarketing Select ‘Tools and setting’ in the top menu -> ‘Audience manager’ under Shared library On the left menu choose ‘data source’ Creating or editing the tag Click three dots on the top right -> ‘Edit source’ Choose the first option and click ‘Sava and continue’ Tag setup Click ‘Details’ In the opened page, choose ‘Tag setup’ at the bottom. Two wasy to..
Google Ads Enhanced Conversion Enhanced conversion can reduce the lost conversions by sending supplementary information such as the user’s email in addition to what is called glid ID in normal conversion tracking. List of Contents
GA4 - Account, Property set up GA4 is a new version of Google Analytics. It is a great tool to track website traffic and capture events to better optimize your website for you users. Today, we are going to see how to set up a GA4 account and property. Unlike UA, its predecessor, there are three layers in GA4 when it comes to an account: Account (business) -> Property (website) - Data Stream (website) Account The account repre..
Toggle button with CSS Let’s make a toggle button with HTML and CSS Implementation Option 1 HTML CSS /* toggle */ label { height: 30px; width: 60px; border-radius: 30px; } input { display: none; } input:checked + span { background-color: gray; } input:checked + span::before { left: 30px; } .toggle-circle { height: 100%; width: 100%; display: block; border-radius: 30px; transition: 0.4s ease; border: 1px solid black; p..
Audience, Segment You can add a certain type of audiences to target them in a remarketing campaign. Audiences can be created in Google Analytics or in Google Ads. Let’s see how. GA4 Click ‘Admin’ under the bottom left corner then select ‘Audiences’ under Property ‘All Users’ and ‘Purchaser’ are provided by default. Click ‘New audience’ Here, you can either create from scratch or use a template. 1. Start from Scra..
Google Ads Remarketing Campaign setup With Google Ads remarketing, it is possible to target a customer who visited the site or target a specific cagetory of customers when the customers search on Google or associated browsers. How to Create a Re Marketing Campaign Click ‘New campaign’ Choose a goal Check conversions (optional) - to remove, select the three dots on the right Select a campaign type Then create a campaign as you normal..
Countdown with CSS Let’s see how to implement a countdown using CSS animation Implementation HTML Add numbers to countdown as needed 1 2 3 Go CSS Use CSS animation delay to show the counter in order. /* count */ .count { height: 50px; width: 50px; position: relative; margin: auto; overflow: hidden; } .count .num { height: 40px; position: absolute; bottom: -5px; left: 50%; transform-origin: bottom; transform: trans..
API (Application Programming Interface) The API acts as a middle man between the client and server. It allows you to share only necessary data in a secure way and for that many companies use API to share data. API 형식 RESTful API (suggested by Roy Fielding https://en.wikipedia.org/wiki/Roy_Fielding) There are a various ways of transferring data (HTTP, FTP,…) and this can cause incompatibility between the devices. RESTful API is to foll..

728x90