<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Marketing &#8211; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</title>
	<atom:link href="https://xinicomms.com/category/digital-marketing/feed/" rel="self" type="application/rss+xml" />
	<link>https://xinicomms.com</link>
	<description>Digital Marketing Agency, Brand Management, Advertising Agency, Media Company, Packaging,  Best Printing Content Marketing, SEO, Printing, Branding Places, Best Printing Compsny In Lagos Nigeria, Letterhead Printing, Business Card, Company Seal, Banner, Feather Banner, Social Media Management, Studios Services, Branding, Brands, Digital Marketing, Lagos Agency, Nigeria</description>
	<lastBuildDate>Tue, 18 Oct 2022 22:32:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.3.17</generator>

<image>
	<url>https://xinicomms.com/wp-content/uploads/2018/07/cropped-ball-closure-rings-1790018_960_720-32x32.jpg</url>
	<title>Digital Marketing &#8211; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</title>
	<link>https://xinicomms.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Algorithm Design Writting</title>
		<link>https://xinicomms.com/algorithm-design-writting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=algorithm-design-writting</link>
				<pubDate>Thu, 17 Oct 2019 20:20:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4629</guid>
				<description><![CDATA[<p>Algorithm? WHAT? Weird topic but very important for every visuals. This article will dive into the principles of algorithm design. If you haven&#8217;t a clue what I&#8217;m referring to, read on! When you hear the word &#8220;algorithm,&#8221; you probably respond in one of three ways: You immediately know and understand what we&#8217;re talking about because [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/algorithm-design-writting/">Algorithm Design Writting</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>Algorithm? WHAT?</p>
<p>Weird topic but very important for every visuals.</p>
<p>This article will dive into the principles of algorithm design. If you haven&#8217;t a clue what I&#8217;m referring to, read on!</p>
<p>When you hear the word &#8220;algorithm,&#8221; you probably respond in one of three ways:</p>
<ol>
<li>You immediately know and understand what we&#8217;re talking about because you studied computer science.</li>
<li>You know that algorithms are the workhorses of companies like Google and Facebook, but you aren&#8217;t really sure what the word means.</li>
<li>You run and hide in fear because everything you know about algorithms reminds you of high-school Calculus nightmares.</li>
</ol>
<p>If you are one of the second two, this article is for you.</p>
<p>Yes, Thanks To code.tutsplus.com for their contribution.</p>
<h2 class="nolinks">What is an Algorithm, Exactly?</h2>
<blockquote class="pullquote"><p>Algorithms are not a special type of operation, necessarily. They are conceptual, a set of steps that you take in code to reach a specific goal.</p></blockquote>
<p>Algorithms have been commonly defined in simple terms as &#8220;instructions for completing a task&#8221;. They&#8217;ve also been called &#8220;recipes&#8221;. In <em>The Social Network</em>, an algorithm is what Zuckerberg needed to make Facemash work. If you saw the movie, you probably remember seeing what looked like a scribbly equation on a window in Mark&#8217;s dorm room. But what does that scribbly algebra have to do with Mark&#8217;s simple &#8220;hot or not&#8221; site?</p>
<p>Algorithms are indeed instructions. Perhaps a more accurate description would be that algorithms are patterns for completing a task in an efficient way. Zuckerberg&#8217;s Facemash was a voting site to determine someone&#8217;s attractiveness relative to a whole group of people, but the user would only be given options between two people. Mark Zuckerberg needed an algorithm that decided which people to match up to one another, and how to value a vote relative to that person&#8217;s previous history and previous contenders. This required more intuition than simply counting votes for each person.</p>
<p>For instance, let&#8217;s say you wanted to create an algorithm for adding 1 to any negative number, and subtracting 1 from any positive number, and doing nothing to 0. You might do something like this (in JavaScript-esque pseudo code):</p>
<div>
<div id="highlighter_900180" class="syntaxhighlighter  js">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="gutter">
<div class="line number1 index0 alt2">1</div>
<div class="line number2 index1 alt1">2</div>
<div class="line number3 index2 alt2">3</div>
<div class="line number4 index3 alt1">4</div>
<div class="line number5 index4 alt2">5</div>
<div class="line number6 index5 alt1">6</div>
<div class="line number7 index6 alt2">7</div>
<div class="line number8 index7 alt1">8</div>
<div class="line number9 index8 alt2">9</div>
</td>
<td class="code">
<div class="container">
<div class="line number1 index0 alt2"><code class="js keyword">function</code> <code class="js plain">addOrSubtractOne(number){</code></div>
<div class="line number2 index1 alt1"><code class="js spaces">    </code><code class="js keyword">if</code> <code class="js plain">(number &lt; 0) {</code></div>
<div class="line number3 index2 alt2"><code class="js spaces">        </code><code class="js keyword">return</code> <code class="js plain">number + 1</code></div>
<div class="line number4 index3 alt1"><code class="js spaces">    </code><code class="js plain">} </code><code class="js keyword">else</code> <code class="js keyword">if</code> <code class="js plain">(number &lt; 0) {</code></div>
<div class="line number5 index4 alt2"><code class="js spaces">        </code><code class="js keyword">return</code> <code class="js plain">number - 1</code></div>
<div class="line number6 index5 alt1"><code class="js spaces">    </code><code class="js plain">} </code><code class="js keyword">else</code> <code class="js keyword">if</code> <code class="js plain">(number == 0) {</code></div>
<div class="line number7 index6 alt2"><code class="js spaces">        </code><code class="js keyword">return</code> <code class="js plain">0;</code></div>
<div class="line number8 index7 alt1"><code class="js spaces">    </code><code class="js plain">}</code></div>
<div class="line number9 index8 alt2"><code class="js plain">}</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>You may be saying to yourself, &#8220;That&#8217;s a function.&#8221; And you&#8217;re right. Algorithms are not a special type of operation, necessarily. They are conceptual &#8211; a set of steps that you take in code to reach a specific goal.</p>
<blockquote><p>So why are they a big deal? Clearly, adding or subtracting 1 to a number is a fairly simple thing to do.</p></blockquote>
<p>But let&#8217;s talk for a second about searching. To search for a number in an array of numbers, how would you think to do it? A naive approach would be to iterate the number, checking each number against the one you&#8217;re searching for. But this isn&#8217;t an efficient solution, and has a very wide range of possible completion times, making it an erratic and unreliable search method when scaled to large search sets.</p>
<div>
<div id="highlighter_73334" class="syntaxhighlighter  js">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="gutter">
<div class="line number1 index0 alt2">1</div>
<div class="line number2 index1 alt1">2</div>
<div class="line number3 index2 alt2">3</div>
<div class="line number4 index3 alt1">4</div>
<div class="line number5 index4 alt2">5</div>
<div class="line number6 index5 alt1">6</div>
</td>
<td class="code">
<div class="container">
<div class="line number1 index0 alt2"><code class="js keyword">function</code> <code class="js plain">naiveSearch(needle, haystack){</code></div>
<div class="line number2 index1 alt1"><code class="js spaces">    </code><code class="js keyword">for</code> <code class="js plain">(</code><code class="js keyword">var</code> <code class="js plain">i = 0; i &lt; haystack.length; i++){</code></div>
<div class="line number3 index2 alt2"><code class="js spaces">        </code><code class="js keyword">if</code> <code class="js plain">(haystack[i] == needle) { </code><code class="js keyword">return</code> <code class="js plain">needle; }</code></div>
<div class="line number4 index3 alt1"><code class="js spaces">    </code><code class="js plain">}</code></div>
<div class="line number5 index4 alt2"><code class="js spaces">    </code><code class="js keyword">return</code> <code class="js keyword">false</code><code class="js plain">;</code></div>
<div class="line number6 index5 alt1"><code class="js plain">}</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Fortunately, we can do better than this for search.</p>
<h3 class="nolinks">Why is it Inefficient?</h3>
<blockquote class="pullquote"><p>There is no better way to become a better algorithm designer than to have a deep understanding and appreciation for algorithms.</p></blockquote>
<p>Let&#8217;s say your array has 50,000 entries, and you brute-force search (that is, search by iterating the full array). The entry you are searching for, in the best case scenario, will be the first entry in the 50,000-entry array. In the worst case scenario, however, the algorithm will take 50,000 times longer to complete than in the best case scenario.</p>
<div class="post__inarticle-ad-template">
<div class="avert fuse-ad">
<div class="avert__wrapper">
<div class="avert__content">
<div data-fuse="21764347426" data-fuse-code="fuse-slot-21764347426-1" data-fuse-slot="/71161633/ENV_envato/article_mid_1">
<div id="fuse-slot-21764347426-1" class="fuse-slot" data-google-query-id="CJ-ymayLpOUCFYkS0wodEasC8g">
<div id="google_ads_iframe_/71161633/ENV_envato/article_mid_1_0__container__"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<h3 class="nolinks">So what&#8217;s Better?</h3>
<p>Instead, you would search using binary search. This involves sorting the array (which I will let you learn about on your own) and subsequently dividing the array in half, and checking to see if the search number is greater or less than the halfway mark in the array. If it is greater than the halfway mark of a sorted array, then we know that the first half can be discarded, as the searched number isn&#8217;t a part of the array. We can also cut out a lot of work by defining the outer bounds of the array and checking to see if the searched number exists outside of those bounds, and if so, we have taken what would have been a multiple-iteration operation and turned it into a single iteration operation (which in the brute-force algorithm would have taken 50,000 operations).</p>
<div>
<div id="highlighter_967334" class="syntaxhighlighter  js">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="gutter">
<div class="line number1 index0 alt2">01</div>
<div class="line number2 index1 alt1">02</div>
<div class="line number3 index2 alt2">03</div>
<div class="line number4 index3 alt1">04</div>
<div class="line number5 index4 alt2">05</div>
<div class="line number6 index5 alt1">06</div>
<div class="line number7 index6 alt2">07</div>
<div class="line number8 index7 alt1">08</div>
<div class="line number9 index8 alt2">09</div>
<div class="line number10 index9 alt1">10</div>
<div class="line number11 index10 alt2">11</div>
<div class="line number12 index11 alt1">12</div>
<div class="line number13 index12 alt2">13</div>
<div class="line number14 index13 alt1">14</div>
<div class="line number15 index14 alt2">15</div>
<div class="line number16 index15 alt1">16</div>
<div class="line number17 index16 alt2">17</div>
<div class="line number18 index17 alt1">18</div>
<div class="line number19 index18 alt2">19</div>
<div class="line number20 index19 alt1">20</div>
</td>
<td class="code">
<div class="container">
<div class="line number1 index0 alt2"><code class="js plain">sortedHaystack = recursiveSort(haystack);</code></div>
<div class="line number2 index1 alt1"><code class="js keyword">function</code> <code class="js plain">bSearch(needle, sortedHaystack, firstIteration){</code></div>
<div class="line number3 index2 alt2"><code class="js spaces">    </code><code class="js keyword">if</code> <code class="js plain">(firstIteration){</code></div>
<div class="line number4 index3 alt1"><code class="js spaces">        </code><code class="js keyword">if</code> <code class="js plain">(needle &gt; sortedHaystack.last || needle &lt; sortedHaystack.first){</code></div>
<div class="line number5 index4 alt2"><code class="js spaces">            </code><code class="js keyword">return</code> <code class="js keyword">false</code><code class="js plain">;</code></div>
<div class="line number6 index5 alt1"><code class="js spaces">        </code><code class="js plain">}</code></div>
<div class="line number7 index6 alt2"><code class="js spaces">    </code><code class="js plain">}</code></div>
<div class="line number8 index7 alt1"><code class="js spaces">    </code><code class="js keyword">if</code> <code class="js plain">(haystack.length == 2){</code></div>
<div class="line number9 index8 alt2"><code class="js spaces">        </code><code class="js keyword">if</code> <code class="js plain">(needle == haystack[0]) {</code></div>
<div class="line number10 index9 alt1"><code class="js spaces">            </code><code class="js keyword">return</code> <code class="js plain">haystack[0];</code></div>
<div class="line number11 index10 alt2"><code class="js spaces">            </code><code class="js plain">} </code><code class="js keyword">else</code> <code class="js plain">{</code></div>
<div class="line number12 index11 alt1"><code class="js spaces">            </code><code class="js keyword">return</code> <code class="js plain">haystack[1];</code></div>
<div class="line number13 index12 alt2"><code class="js spaces">            </code><code class="js plain">}</code></div>
<div class="line number14 index13 alt1"><code class="js spaces">    </code><code class="js plain">}</code></div>
<div class="line number15 index14 alt2"><code class="js spaces">    </code><code class="js keyword">if</code> <code class="js plain">(needle &lt; haystack[haystack.length/2]){</code></div>
<div class="line number16 index15 alt1"><code class="js spaces">        </code><code class="js plain">bSearch(needle, haystack[0..haystack.length/2 -1], </code><code class="js keyword">false</code><code class="js plain">);</code></div>
<div class="line number17 index16 alt2"><code class="js spaces">    </code><code class="js plain">} </code><code class="js keyword">else</code> <code class="js plain">{</code></div>
<div class="line number18 index17 alt1"><code class="js spaces">        </code><code class="js plain">bSearch(needle, haystack[haystack.length/2..haystack.length], </code><code class="js keyword">false</code><code class="js plain">);</code></div>
<div class="line number19 index18 alt2"><code class="js spaces">    </code><code class="js plain">}</code></div>
<div class="line number20 index19 alt1"><code class="js plain">}</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3 class="nolinks">Sounds Fairly Complicated</h3>
<p>Take the seemingly complicated nature of a single binary search algorithm, and apply it to billions of possible links (as searching through Google). Beyond that, let&#8217;s apply some sort of ranking system to those linked searches to give an order of response pages. Better yet, apply some kind of seemingly randomized &#8220;suggestion&#8221; system based on artificial intelligence social models designed to identify who you might want to add as a friend.</p>
<p>This gives us a much clearer understanding of why algorithms are more than just a fancy name for functions. At their finest, they are clever, efficient ways of doing something that requires a higher level of intuition than the most apparent solution. They can take what might would require a supercomputer years to do and turn it into a task that finishes in seconds on a mobile phone.</p>
<h3 class="nolinks">How do Algorithms Apply to Me?</h3>
<p>For most of us as developers, we aren&#8217;t designing high-level abstracted algorithms on a daily basis.</p>
<blockquote><p>Luckily, we stand on the shoulders of the developers who came before us, who wrote native sort functions and allow us to search strings for substrings with indexOf in an efficient manner.</p></blockquote>
<p>But we DO, however, deal with algorithms of our own. We create <code>for</code> loops and write functions every day; so how can good algorithm design principles inform the writing of these functions?</p>
<h3 class="nolinks">Know Your Input</h3>
<p>One of the main principles of algorithmic design is to, if possible, build your algorithm in such a way that the input itself does some of the work for you. For instance, if you know that your input is always going to be numbers, you do not need to have exceptions/checks for strings, or coerce your values into numbers. If you know that your DOM element is the same every time in a <code>for</code> loop in JavaScript, you shouldn&#8217;t be querying for that element in every iteration. On the same token, in your <code>for</code> loops, you shouldn&#8217;t use convenience functions with overhead if you can accomplish the same thing using (closer to) simple operations.</p>
<div>
<div id="highlighter_293125" class="syntaxhighlighter  js">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="gutter">
<div class="line number1 index0 alt2">01</div>
<div class="line number2 index1 alt1">02</div>
<div class="line number3 index2 alt2">03</div>
<div class="line number4 index3 alt1">04</div>
<div class="line number5 index4 alt2">05</div>
<div class="line number6 index5 alt1">06</div>
<div class="line number7 index6 alt2">07</div>
<div class="line number8 index7 alt1">08</div>
<div class="line number9 index8 alt2">09</div>
<div class="line number10 index9 alt1">10</div>
<div class="line number11 index10 alt2">11</div>
<div class="line number12 index11 alt1">12</div>
</td>
<td class="code">
<div class="container">
<div class="line number1 index0 alt2"><code class="js comments">// don't do this:</code></div>
<div class="line number2 index1 alt1"><code class="js keyword">for</code> <code class="js plain">(</code><code class="js keyword">var</code> <code class="js plain">i = 1000; i &gt; 0; i--){</code></div>
<div class="line number3 index2 alt2"><code class="js spaces">    </code><code class="js plain">$(</code><code class="js string">"#foo"</code><code class="js plain">).append(</code><code class="js string">"&lt;span&gt;bar&lt;/span&gt;"</code><code class="js plain">);</code></div>
<div class="line number4 index3 alt1"><code class="js plain">}</code></div>
<div class="line number5 index4 alt2"></div>
<div class="line number6 index5 alt1"><code class="js comments">// do this instead</code></div>
<div class="line number7 index6 alt2"><code class="js keyword">var</code> <code class="js plain">foo = $(</code><code class="js string">"#foo"</code><code class="js plain">);</code></div>
<div class="line number8 index7 alt1"><code class="js keyword">var</code> <code class="js plain">s = </code><code class="js string">""</code><code class="js plain">;</code></div>
<div class="line number9 index8 alt2"><code class="js keyword">for</code><code class="js plain">(</code><code class="js keyword">var</code> <code class="js plain">i = 1000; i &gt; 0; i--){</code></div>
<div class="line number10 index9 alt1"><code class="js spaces">    </code><code class="js plain">s += </code><code class="js string">"&lt;span&gt;bar&lt;/span&gt;"</code><code class="js plain">;</code></div>
<div class="line number11 index10 alt2"><code class="js plain">}</code></div>
<div class="line number12 index11 alt1"><code class="js plain">foo.append(s);</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>If you are a JavaScript developer (and you use jQuery) and you don&#8217;t know what the above functions are doing and how they are significantly different, the next point is for you.</p>
<h3 class="nolinks">Understand Your Tools</h3>
<blockquote class="pullquote"><p>At their finest, [algorithms] are clever, efficient ways of doing something that requires a higher level of intuition than the most apparent solution.</p></blockquote>
<p>It is easy to think that this goes without saying. However, there is a difference between &#8220;knowing how to write jQuery&#8221; and &#8220;understanding jQuery&#8221;. Understanding your tools means that you understand what each line of code does, both immediately (the return value of a function or the effect of a method) and implicitly (how much overhead is associated with running a library function, or which is the most efficient method for concatenating a string). To write great algorithms, it is important to know the performance of lower-level functions or utilities, not just the name and implementation of them.</p>
<h3 class="nolinks">Understand the Environment</h3>
<p>Designing efficient algorithms is a full-engagement undertaking. Beyond understanding your tools as a standalone piece, you must also understand the way that they interact with the larger system at hand. For instance, to understand JavaScript in a specific application entirely, it is important to understand the DOM and performance of JavaScript in cross browser scenarios, how available memory affects rendering speeds, the structure of servers (and their responses) you may be interacting with, as well as a myriad of other considerations that are intangible, such as usage scenarios.</p>
<h2 class="nolinks">Reducing the Workload</h2>
<p>In general, the goal of algorithm design is to complete a job in fewer steps. (There are some exceptions, such as Bcrypt hashing.) When you write your code, take into consideration <em>all</em> of the simple operations the computer is taking to reach the goal. Here is a simple checklist to get started on a path to more efficient algorithm design:</p>
<ul>
<li>Use language features to reduce operations (variable caching, chaining, etc).</li>
<li>Reduce iterative loop nesting as much as possible.</li>
<li>Define variables outside of loops when possible.</li>
<li>Use automatic loop indexing (if available) instead of manual indexing.</li>
<li>Use clever reduction techniques, such as recursive divide and conquer and query optimization, to minimize the size of recursive processes.</li>
</ul>
<h2 class="nolinks">Study Advanced Techniques</h2>
<p>There is no better way to become a better algorithm designer than to have a deep understanding and appreciation for algorithms.</p>
<ul>
<li>Take an hour or two every week and read <a href="http://www.amazon.com/Computer-Programming-Volumes-1-4A-Boxed/dp/0321751043">The Art of Computer Programming</a>.</li>
<li>Try a <a href="https://facebook.interviewstreet.com/recruit/challenges">Facebook Programming Challenge</a> or a <a href="http://code.google.com/codejam">Google Codejam</a>.</li>
<li>Learn to solve the same problem with different algorithmic techniques.</li>
<li>Challenge yourself by implementing built in functions of a language, like <code>.sort()</code>, with lower level operations.</li>
</ul>
<h2 id="section---HowDoAlgorithmsWork">How Do Algorithms Work?</h2>
<p>Let&#8217;s take a closer look at an example.</p>
<p>A very simple example of an algorithm would be to find the largest number in an unsorted list of numbers. If you were given a list of five different numbers, you would have this figured out in no time, no computer needed. Now, how about five million different numbers? Clearly, you are going to need a computer to do this, and a computer needs an algorithm.</p>
<p>Below is what the algorithm could look like. Let&#8217;s say the input consists of a list of numbers, and this list is called L. The number L1 would be the first number in the list, L2 the second number, etc. And we know the list is not sorted &#8211; otherwise, the answer would be really easy. So, the input to the algorithm is a list of numbers, and the output should be the largest number in the list.</p>
<p>The algorithm would look something like this:</p>
<p><tt>Step 1: Let Largest = L1</tt></p>
<p>This means you start by assuming that the first number is the largest number.</p>
<p><tt>Step 2: For each item in the list:</tt></p>
<p>This means you will go through the list of numbers one by one.</p>
<p><tt>Step 3: If the item &gt; Largest:</tt></p>
<p>If you find a new largest number, move to step four. If not, go back to step two, which means you move on to the next number in the list.</p>
<p><tt>Step 4: Then Largest = the item</tt></p>
<p>This replaces the old largest number with the new largest number you just found. Once this is completed, return to step two until there are no more numbers left in the list.</p>
<p><tt>Step 5: Return Largest</tt></p>
<p>This produces the desired result.</p>
<p>Notice that the algorithm is described as a series of logical steps in a language that is easily understood. For a computer to actually use these instructions, they need to be written in a language that a computer can understand, known as a <b>programming language</b>.</p>
<h2>Now, Is The Next Gen.</h2>
<h1>Code-Dependent: Pros and Cons of the Algorithm Age</h1>
<p class="subhead">Algorithms are aimed at optimizing everything. They can save lives, make things easier and conquer chaos. Still, experts worry they can also put too much control in the hands of corporations and governments, perpetuate bias, create filter bubbles, cut choices, creativity and serendipity, and could result in greater unemployment</p>
<p class="byline">BY <a href="https://www.pewresearch.org/staff/lee-rainie"><span class="author">LEE RAINIE</span></a> AND <a href="https://www.pewresearch.org/staff/janna-anderson"><span class="author">JANNA ANDERSON</span></a></p>
<div class="text ">
<figure class="image-box alignnone has-caption"><img class="wp-photo wp-image-18379 size-full" src="https://assets.pewresearch.org/wp-content/uploads/sites/14/2017/02/08133415/PI_2017.02.08_Algorithms_featured.png" alt="(filistimlyanin/iStock.com)" width="640" height="320" data-attachid="18379" /></p>
<div class="image-meta"><span class="photo-caption">(filistimlyanin/iStock.com)</span></div>
</figure>
<p>Algorithms are instructions for <a href="https://www.theguardian.com/science/2013/jul/01/how-algorithms-rule-world-nsa">solving a problem</a> or completing a task. Recipes are algorithms, as are math equations. Computer code is algorithmic. The internet runs on algorithms and all online searching is accomplished through them. Email knows where to go thanks to algorithms. Smartphone apps are nothing but algorithms. Computer and video games are algorithmic storytelling. Online dating and book-recommendation and travel websites would not function without algorithms. GPS mapping systems get people from point A to point B via algorithms. Artificial intelligence (AI) is naught but algorithms. The material people see on social media is brought to them by algorithms. In fact, everything people see and do on the web is a product of algorithms. Every time someone sorts a column in a spreadsheet, algorithms are at play, and most financial transactions today are accomplished by algorithms. Algorithms help gadgets respond to voice commands, recognize faces, sort photos and build and drive cars. Hacking, cyberattacks and cryptographic code-breaking exploit algorithms. <a href="https://erc.europa.eu/projects-and-results/erc-stories/self-learning-ai-emulates-human-brain">Self-learning and self-programming algorithms</a> are now emerging, so it is possible that in the future algorithms will write many if not most algorithms.</p>
<p>Algorithms are often elegant and incredibly useful tools used to accomplish tasks. They are mostly invisible aids, augmenting human lives in increasingly incredible ways. However, sometimes the application of algorithms created with good intentions leads to unintended consequences. Recent news items tie to these concerns:</p>
<ul>
<li>The British pound <a href="http://www.economist.com/news/finance-and-economics/21708673-pounds-weakness-vote-no-confidence-brexiting-britain-why-sterling">dropped 6.1% in value in seconds on Oct. 7</a>, 2016, partly because of currency trades triggered by algorithms.</li>
<li>Microsoft engineers created a Twitter bot named “Tay” this past spring in an attempt to chat with Millennials by responding to their prompts, but within hours <a href="https://www.theguardian.com/technology/2016/mar/30/microsoft-racist-sexist-chatbot-twitter-drugs">it was spouting racist, sexist, Holocaust-denying</a> tweets based on algorithms that had it “learning” how to respond to others <a href="http://www.theverge.com/2016/3/24/11297050/tay-microsoft-chatbot-racist">based on what was tweeted at it</a>.</li>
<li>Facebook tried to create a feature to highlight Trending Topics from around the site in people’s feeds. First, it had a team of <a href="https://www.theguardian.com/technology/2016/may/12/facebook-trending-news-leaked-documents-editor-guidelines">humans edit the feature</a>, but controversy erupted when some accused the platform of being <a href="http://gizmodo.com/former-facebook-workers-we-routinely-suppressed-conser-1775461006">biased against conservatives</a>. So, Facebook then turned the job over to algorithms only to find that they <a href="https://www.washingtonpost.com/news/the-intersect/wp/2016/10/12/facebook-has-repeatedly-trended-fake-news-since-firing-its-human-editors/">could not discern real news from fake news</a>.</li>
<li>Cathy O’Neil, author of <em>Weapons of Math Destruction: How Big Data Increases Inequality and Threatens Democracy</em>, <a href="https://www.theguardian.com/science/2016/sep/01/how-algorithms-rule-our-working-lives">pointed out that predictive analytics based on algorithms tend to punish the poor</a>, using algorithmic hiring practices as an example.</li>
<li>Well-intentioned algorithms can be sabotaged by bad actors. An internet slowdown <a href="http://www.nytimes.com/2016/10/23/us/politics/a-new-era-of-internet-attacks-powered-by-everyday-devices.html">swept the East Coast of the U.S.</a> on Oct. 21, 2016, after hackers bombarded Dyn DNS, an internet traffic handler, with information that overloaded its circuits, ushering in a new era of internet attacks powered by internet-connected devices. This after internet security expert Bruce Schneier warned in September that <a href="https://www.schneier.com/blog/archives/2016/09/someone_is_lear.html">“Someone Is Learning How to Take Down the Internet.”</a> And the abuse of <a href="http://www.vox.com/new-money/2016/11/16/13637310/facebook-fake-news-explained">Facebook’s News Feed</a> algorithm and general promulgation of <a href="https://www.buzzfeed.com/craigsilverman/viral-fake-election-news-outperformed-real-news-on-facebook">fake news online</a> became controversial as the 2016 U.S. presidential election proceeded.</li>
<li>Researcher Andrew Tutt called for an “<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2747994">FDA for Algorithms</a>,” noting, “The rise of increasingly complex algorithms calls for critical thought about how to best prevent, deter and compensate for the harms that they cause …. Algorithmic regulation will require federal uniformity, expert judgment, political independence and pre-market review to prevent – without stifling innovation – the introduction of unacceptably dangerous algorithms into the market.”</li>
<li>The White House released two reports in October 2016 detailing the <a href="https://obamawhitehouse.archives.gov/sites/default/files/whitehouse_files/microsites/ostp/NSTC/preparing_for_the_future_of_ai.pdf">advance of algorithms</a> and artificial intelligence and <a href="https://obamawhitehouse.archives.gov/sites/default/files/whitehouse_files/microsites/ostp/NSTC/national_ai_rd_strategic_plan.pdf">plans to address issues tied to it,</a> and it issued a <a href="https://obamawhitehouse.archives.gov/sites/whitehouse.gov/files/documents/Artificial-Intelligence-Automation-Economy.PDF">December report</a> outlining some of the potential effects of AI-driven automation on the U.S. job market and economy.</li>
<li>On January 17, 2017, the <a href="https://futureoflife.org/">Future of Life Institute</a> published a list of <a href="https://futureoflife.org/ai-principles/">23 Principles for Beneficial Artificial Intelligence</a>, created by a gathering of concerned researchers at a conference at Asimolar, in Pacific Grove, California. The more than 1,600 signatories included Steven Hawking, Elon Musk, Ray Kurzweil and hundreds of the world’s foremost AI researchers.</li>
</ul>
<p>The use of algorithms <a href="https://en.wikipedia.org/wiki/List_of_algorithms">is spreading</a> as massive amounts of data are being created, captured and analyzed by businesses and governments. Some are calling this the <a href="https://newrepublic.com/article/133472/life-age-algorithms">Age of Algorithms</a> and predicting that the <a href="http://news.stanford.edu/2016/09/01/ai-might-affect-urban-life-2030/">future of algorithms</a> is tied to <a href="https://blogs.nvidia.com/blog/2016/07/29/whats-difference-artificial-intelligence-machine-learning-deep-learning-ai/">machine learning and deep learning</a> that will get better and better at an ever-faster pace.</p>
<p>While many of the 2016 U.S. presidential election post-mortems noted the revolutionary impact of web-based tools in influencing its outcome, XPrize Foundation CEO Peter Diamandis predicted that “<a href="http://singularityhub.com/2016/11/07/5-big-tech-trends-that-will-make-this-election-look-tame/">five big tech trends will make this election look tame</a>.” He said advances in quantum computing and the rapid evolution of AI and AI agents embedded in systems and devices in the Internet of Things will lead to hyper-stalking, influencing and shaping of voters, and hyper-personalized ads, and will create new ways to misrepresent reality and perpetuate falsehoods.</p>
<p><a class="image-box" href="https://www.pewinternet.org/2017/02/08/code-dependent-pros-and-cons-of-the-algorithm-age/pi_2017-02-08_algorithms_0-01/" rel="attachment wp-att-18309"><img class="wp-photo aligncenter size-full wp-image-18309" src="https://assets.pewresearch.org/wp-content/uploads/sites/14/2017/02/06143847/PI_2017.02.08_algorithms_0-01.png" alt="" width="640" height="616" data-attachid="18309" /></a>Analysts like Aneesh Aneesh of Stanford University foresee algorithms taking over public and private activities in a new era of <a href="http://web.stanford.edu/class/sts175/NewFiles/Algocratic%20Governance.pdf">“algocratic governance”</a> that supplants “bureaucratic hierarchies.” Others, like Harvard’s Shoshana Zuboff, describe the emergence of <a href="https://cryptome.org/2015/07/big-other.pdf">“surveillance capitalism”</a> that organizes economic behavior in an “information civilization.”</p>
<p>To illuminate current attitudes about the potential impacts of algorithms in the next decade, Pew Research Center and Elon University’s Imagining the Internet Center conducted a large-scale canvassing of technology experts, scholars, corporate practitioners and government leaders. Some 1,302 responded to this question about what will happen in the next decade:</p>
<p><strong><em>Will the net overall effect of algorithms be positive for individuals and society or negative for individuals and society?</em></strong></p>
<p>The non-scientific canvassing found that 38% of these particular respondents predicted that the positive impacts of algorithms will outweigh negatives for individuals and society in general, while 37% said negatives will outweigh positives; 25% said the overall impact of algorithms will be about 50-50, positive-negative. [See “<a href="https://www.pewinternet.org/2017/02/08/algorithms-about-this-canvassing-of-experts/">About this canvassing of experts</a>” for further details about the limits of this sample.]</p>
<p>Participants were asked to explain their answers, and most wrote detailed elaborations that provide insights about hopeful and concerning trends. Respondents were allowed to respond anonymously; these constitute a slight majority of the written elaborations. These findings do not represent all the points of view that are possible to a question like this, but they do reveal a wide range of valuable observations based on current trends.</p>
<p>In the next section we offer a brief outline of seven key themes found among the written elaborations. Following that introductory section there is a <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">much more in-depth look at respondents’ thoughts</a> tied to each of the themes. All responses are lightly edited for style.</p>
<p><a class="toc-anchor" name="theme-1-algorithms-will-continue-to-spread-everywhere"></a><a class="toc-anchor" name="theme-1-algorithms-will-continue-to-spread-everywhere"></a></p>
<h4><u>Theme 1: Algorithms will continue to spread everywhere</u></h4>
<p>There is fairly uniform agreement among these respondents that algorithms are generally invisible to the public and there will be an exponential rise in their influence in the next decade.</p>
<p>A representative statement of this view came from <strong>Barry Chudakov</strong>, founder and principal at Sertain Research and StreamFuzion Corp. He replied:</p>
<p>“‘If every algorithm suddenly stopped working, it would be the end of the world as we know it.’ (<a href="https://www.amazon.com/Master-Algorithm-Ultimate-Learning-Machine/dp/0465065708">Pedro Domingo’s <em>The Master Algorithm</em></a><em>). </em>Fact: We have already turned our world over to machine learning and algorithms. The question now is, how to better understand and manage what we have done?</p>
<p>“Algorithms are a useful artifact to begin discussing the larger issue of the effects of technology-enabled assists in our lives. Namely, how can we see them at work? Consider and assess their assumptions? And most importantly for those who don’t create algorithms for a living – how do we educate ourselves about the way they work, where they are in operation, what assumptions and biases are inherent in them, and how to keep them transparent? Like fish in a tank, we can see them swimming around and keep an eye on them.</p>
<blockquote><p>Fact: We have already turned our world over to machine learning and algorithms. The question now is, how to better understand and manage what we have done?<br />
<cite>BARRY CHUDAKOV</cite></p></blockquote>
<p>“Algorithms are the new arbiters of human decision-making in almost any area we can imagine, from watching a movie (Affectiva emotion recognition) to buying a house (Zillow.com) to self-driving cars (Google). Deloitte Global predicted more than 80 of the world’s 100 largest enterprise software companies will have cognitive technologies – mediated by algorithms – integrated into their products by the end of 2016. As Brian Christian and Tom Griffiths write in <a href="https://www.amazon.com/Algorithms-Live-Computer-Science-Decisions/dp/1627790365/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1476814852&amp;sr=1-1&amp;keywords=algorithms+to+live+by"><em>Algorithms to Live By</em>,</a> algorithms provide ‘a better standard against which to compare human cognition itself.’ They are also a goad to consider that same cognition: How are we thinking and what does it mean to think through algorithms to mediate our world?</p>
<p>“The main positive result of this is better understanding of how to make rational decisions, and in this measure a better understanding of ourselves. After all, algorithms are generated by trial and error, by testing, by observing, and coming to certain mathematical formulae regarding choices that have been made again and again – and this can be used for difficult choices and problems, especially when intuitively we cannot readily see an answer or a way to resolve the problem. The <a href="https://en.wikipedia.org/wiki/Secretary_problem">37% Rule</a>, optimal stopping and other algorithmic conclusions are evidence-based guides that enable us to use wisdom and mathematically verified steps to make better decisions.</p>
<p>“The secondary positive result is connectivity. In a technological recapitulation of what spiritual teachers have been saying for centuries, our things are demonstrating that everything is – or can be – connected to everything else. Algorithms with the persistence and ubiquity of insects will automate processes that used to require human manipulation and thinking. These can now manage basic processes of monitoring, measuring, counting or even seeing. Our car can tell us to slow down. Our televisions can suggest movies to watch. A grocery can suggest a healthy combination of meats and vegetables for dinner. Siri reminds you it’s your anniversary.</p>
<p>“The main negative changes come down to a simple but now quite difficult question: How can we see, and fully understand the implications of, the algorithms programmed into everyday actions and decisions? The rub is this: Whose intelligence is it, anyway? … Our systems do not have, and we need to build in, what <a href="http://www.peachpit.com/articles/article.aspx?p=29658&amp;seqNum=3">David Gelernter called ‘topsight,’</a> the ability to not only create technological solutions but also see and explore their consequences before we build business models, companies and markets on their strengths, and especially on their limitations.”</p>
<p>Chudakov added that this is especially necessary because in the next decade and beyond, “By expanding collection and analysis of data and the resulting application of this information, a layer of intelligence or thinking manipulation is added to processes and objects that previously did not have that layer. So prediction possibilities follow us around like a pet. The result: As information tools and predictive dynamics are more widely adopted, our lives will be increasingly affected by their inherent conclusions and the narratives they spawn.”</p>
<p>“The overall impact of ubiquitous algorithms is presently incalculable because the presence of algorithms in everyday processes and transactions is now so great, and is mostly hidden from public view. All of our extended thinking systems (algorithms fuel the software and connectivity that create extended thinking systems) demand more thinking – not less – and a more global perspective than we have previously managed. The expanding collection and analysis of data and the resulting application of this information can cure diseases, decrease poverty, bring timely solutions to people and places where need is greatest, and dispel millennia of prejudice, ill-founded conclusions, inhumane practice and ignorance of all kinds. Our algorithms are now redefining what we think, how we think and what we know. We need to ask them to think about their thinking – to look out for pitfalls and inherent biases before those are baked in and harder to remove.</p>
<p>“To create oversight that would assess the impact of algorithms, first we need to see and understand them in the context for which they were developed. That, by itself, is a tall order that requires impartial experts backtracking through the technology development process to find the models and formulae that originated the algorithms. Then, keeping all that learning at hand, the experts need to soberly assess the benefits and deficits or risks the algorithms create. Who is prepared to do this? Who has the time, the budget and resources to investigate and recommend useful courses of action? This is a 21st-century job description – and market niche – in search of real people and companies. In order to make algorithms more transparent, products and product information circulars might include an outline of algorithmic assumptions, akin to the nutritional sidebar now found on many packaged food products, that would inform users of how algorithms drive intelligence in a given product and a reasonable outline of the implications inherent in those assumptions.”</p>
<p><a class="toc-anchor" name="theme-2-good-things-lie-ahead"></a><a class="toc-anchor" name="theme-2-good-things-lie-ahead"></a></p>
<h4><u>Theme 2: Good things lie ahead</u></h4>
<p>A number of respondents noted the many ways in which algorithms will help make sense of massive amounts of data, noting that this will spark breakthroughs in science, new conveniences and human capacities in everyday life, and an ever-better capacity to link people to the information that will help them. They perform seemingly miraculous tasks humans cannot and they will continue to greatly augment human intelligence and assist in accomplishing great things. A representative proponent of this view is<strong> Stephen Downes</strong>, a researcher at the National Research Council of Canada, who listed the following as positive changes:</p>
<p>“Some examples:<br />
<em>Banks</em>. Today banks provide loans based on very incomplete data. It is true that many people who today qualify for loans would not get them in the future. However, many people – and arguably many more people – will be able to obtain loans in the future, as banks turn away from using such factors as race, socio-economic background, postal code and the like to assess fit. Moreover, with more data (and with a more interactive relationship between bank and client) banks can reduce their risk, thus providing more loans, while at the same time providing a range of services individually directed to actually help a person’s financial state.</p>
<p><em>“Health care providers</em>. Health care is a significant and growing expense not because people are becoming less healthy (in fact, society-wide, the opposite is true) but because of the significant overhead required to support increasingly complex systems, including prescriptions, insurance, facilities and more. New technologies will enable health providers to shift a significant percentage of that load to the individual, who will (with the aid of personal support systems) manage their health better, coordinate and manage their own care, and create less of a burden on the system. As the overall cost of health care declines, it becomes increasingly feasible to provide single-payer health insurance for the entire population, which has known beneficial health outcomes and efficiencies.</p>
<p><em>“Governments</em>. A significant proportion of government is based on regulation and monitoring, which will no longer be required with the deployment of automated production and transportation systems, along with sensor networks. This includes many of the daily (and often unpleasant) interactions we have with government today, from traffic offenses, manifestation of civil discontent, unfair treatment in commercial and legal processes, and the like. A simple example: One of the most persistent political problems in the United States is the gerrymandering of political boundaries to benefit incumbents. Electoral divisions created by an algorithm to a large degree eliminate gerrymandering (and when open and debatable, can be modified to improve on that result).”</p>
<p>A sampling of additional answers, from anonymous respondents:</p>
<blockquote><p>The efficiencies of algorithms will lead to more creativity and self-expression.</p></blockquote>
<ul>
<li>“Algorithms find knowledge in an automated way much faster than traditionally feasible.”</li>
<li>“Algorithms can crunch databases quickly enough to alleviate some of the red tape and bureaucracy that currently slows progress down.”</li>
<li>“We will see less pollution, improved human health, less economic waste.”</li>
<li>“Algorithms have the potential to equalize access to information.”</li>
<li>“The efficiencies of algorithms will lead to more creativity and self-expression.”</li>
<li>“Algorithms can diminish transportation issues; they can identify congestion and alternative times and paths.”</li>
<li>“Self-driving cars could dramatically reduce the number of accidents we have per year, as well as improve quality of life for most people.”</li>
<li>“Better-targeted delivery of news, services and advertising.”</li>
<li>“More evidence-based social science using algorithms to collect data from social media and click trails.”</li>
<li>“Improved and more proactive police work, targeting areas where crime can be prevented.”</li>
<li>“Fewer underdeveloped areas and more international commercial exchanges.”</li>
<li>“Algorithms ease the friction in decision-making, purchasing, transportation and a large number of other behaviors.”</li>
<li>“Bots will follow orders to buy your stocks. Digital agents will find the materials you need.”</li>
<li>“Any errors could be corrected. This will mean the algorithms only become more efficient to humanity’s desires as time progresses.”</li>
</ul>
<p><a class="toc-anchor" name="themes-illuminating-concerns-and-challenges"></a><a class="toc-anchor" name="themes-illuminating-concerns-and-challenges"></a></p>
<h3>Themes illuminating concerns and challenges</h3>
<p>Participants in this study were in substantial agreement that the abundant positives of accelerating code-dependency will continue to drive the spread of algorithms; however, as with all great technological revolutions, this trend has a dark side. Most respondents pointed out concerns, chief among them the final five overarching themes of this report; all have subthemes.</p>
<p><a class="toc-anchor" name="theme-3-humanity-and-human-judgment-are-lost-when-data-and-predictive-modeling-become-paramount"></a><a class="toc-anchor" name="theme-3-humanity-and-human-judgment-are-lost-when-data-and-predictive-modeling-become-paramount"></a></p>
<h4>Theme 3: Humanity and human judgment are lost when data and predictive modeling become paramount</h4>
<p>Advances in algorithms are allowing technology corporations and governments to gather, store, sort and analyze massive data sets. Experts in this canvassing noted that these algorithms are primarily written to optimize efficiency and profitability without much thought about the possible societal impacts of the data modeling and analysis. These respondents argued that humans are considered to be an “input” to the process and they are not seen as real, thinking, feeling, changing beings. They say this is creating a flawed, logic-driven society and that as the process evolves – that is, as algorithms begin to write the algorithms – humans may get left out of the loop, letting “the robots decide.” Representative of this view:</p>
<p><strong>Bart Knijnenburg</strong>, assistant professor in human-centered computing at Clemson University, replied, “Algorithms will capitalize on convenience and profit, thereby discriminating [against] certain populations, but also eroding the experience of everyone else. The goal of algorithms is to fit <em>some</em> of our preferences, but not necessarily <em>all</em> of them: They essentially present a caricature of our tastes and preferences. My biggest fear is that, unless we tune our algorithms for <em>self-actualization</em>, it will be simply too convenient for people to follow the advice of an algorithm (or, too difficult to go beyond such advice), turning these algorithms into self-fulfilling prophecies, and users into zombies who exclusively consume easy-to-consume items.”</p>
<p>An anonymous futurist said, “This has been going on since the beginning of the industrial revolution. Every time you design a human system optimized for efficiency or profitability you dehumanize the workforce. That dehumanization has now spread to our health care and social services. When you remove the humanity from a system where people are included, they become victims.”</p>
<p>Another anonymous respondent wrote, “We simply can’t capture every data element that represents the vastness of a person and that person’s needs, wants, hopes, desires. Who is collecting what data points? Do the human beings the data points reflect even know or did they just agree to the terms of service because they had no real choice? Who is making money from the data? How is anyone to know how his/her data is being massaged and for what purposes to justify what ends? There is no transparency, and oversight is a farce. It’s all hidden from view. I will always remain convinced the data will be used to enrich and/or protect others and not the individual. It’s the basic nature of the economic system in which we live.”</p>
<p>A sampling of excerpts tied to this theme from other respondents (for details, <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">read the fuller versions</a> in the full report):</p>
<blockquote><p>Algorithms have the capability to shape individuals’ decisions without them even knowing it, giving those who have control of the algorithms an unfair position of power.</p></blockquote>
<ul>
<li>“The potential for good is huge, but the potential for misuse and abuse – intentional, and inadvertent – may be greater.”</li>
<li>“Companies seek to maximize profit, not maximize societal good. Worse, they repackage profit-seeking as a societal good. We are nearing the crest of a wave, the trough side of which is a new ethics of manipulation, marketing, nearly complete lack of privacy.”</li>
<li>“What we see already today is that, in practice, stuff like ‘differential pricing’ does not help the consumer; it helps the company that is selling things, etc.”</li>
<li>“Individual human beings will be herded around like cattle, with predictably destructive results on rule of law, social justice and economics.”</li>
<li>“There is an incentive only to further obfuscate the presence and operations of algorithmic shaping of communications processes.”</li>
<li>“Algorithms are … amplifying the negative impacts of data gaps and exclusions.”</li>
<li>“Algorithms have the capability to shape individuals’ decisions without them even knowing it, giving those who have control of the algorithms an unfair position of power.”</li>
<li>“The fact the internet can, through algorithms, be used to almost read our minds means [that] those who have access to the algorithms and their databases have a vast opportunity to manipulate large population groups.”</li>
<li>“The lack of accountability and complete opacity is frightening.”</li>
<li>“By utilitarian metrics, algorithmic decision-making has no downside; the fact that it results in perpetual injustices toward the very minority classes it creates will be ignored. The Common Good has become a discredited, obsolete relic of The Past.”</li>
<li>“In an economy increasingly dominated by a tiny, very privileged and insulated portion of the population, it will largely reproduce inequality for their benefit. Criticism will be belittled and dismissed because of the veneer of digital ‘logic’ over the process.”</li>
<li>“Algorithms are the new gold, and it’s hard to explain why the average ‘good’ is at odds with the individual ‘good.’”</li>
<li>“We will interpret the negative individual impact as the necessary collateral damage of ‘progress.’”</li>
<li>“This will kill local intelligence, local skills, minority languages, local entrepreneurship because most of the available resources will be drained out by the global competitors.”</li>
<li>“Algorithms in the past have been created by a programmer. In the future they will likely be evolved by intelligent/learning machines …. Humans will lose their agency in the world.”</li>
<li>“It will only get worse because there’s no ‘crisis’ to respond to, and hence, not only no motivation to change, but every reason to keep it going – especially by the powerful interests involved. We are heading for a nightmare.”</li>
<li>“Web 2.0 provides more convenience for citizens who need to get a ride home, but at the same time – and it’s naive to think this is a coincidence – it’s also a monetized, corporatized, disempowering, cannibalizing harbinger of the End Times. (I exaggerate for effect. But not by much.)”</li>
</ul>
<p><a class="toc-anchor" name="theme-4-biases-exist-in-algorithmically-organized-systems"></a><a class="toc-anchor" name="theme-4-biases-exist-in-algorithmically-organized-systems"></a></p>
<h4><u>Theme 4: Biases exist in algorithmically-organized systems</u></h4>
<p>Two strands of thinking tie together here. One is that the algorithm creators (code writers), even if they strive for inclusiveness, objectivity and neutrality, build into their creations their own perspectives and values. The other is that the datasets to which algorithms are applied have their own limits and deficiencies. Even datasets with billions of pieces of information do not capture the fullness of people’s lives and the diversity of their experiences. Moreover, the datasets themselves are imperfect because they do not contain inputs from everyone or a representative sample of everyone. The two themes are advanced in these answers:</p>
<p><strong>Justin Reich</strong>, executive director at the MIT Teaching Systems Lab, observed, “The algorithms will be primarily designed by white and Asian men – with data selected by these same privileged actors – for the benefit of consumers like themselves. Most people in positions of privilege will find these new tools convenient, safe and useful. The harms of new technology will be most experienced by those already disadvantaged in society, where advertising algorithms offer bail bondsman ads that assume readers are criminals, loan applications that penalize people for proxies so correlated with race that they effectively penalize people based on race, and similar issues.”</p>
<p><strong>Dudley Irish</strong>, a software engineer, observed, “All, let me repeat that, <em>all</em> of the training data contains biases. Much of it either racial- or class-related, with a fair sprinkling of simply punishing people for not using a standard dialect of English. To paraphrase Immanuel Kant, out of the crooked timber of these datasets no straight thing was ever made.”</p>
<p>A sampling of quote excerpts tied to this theme from other respondents (for details, <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">read the fuller versions</a> in the full report):</p>
<blockquote><p>One of the greatest challenges of the next era will be balancing protection of intellectual property in algorithms with protecting the subjects of those algorithms from unfair discrimination and social engineering.</p></blockquote>
<ul>
<li>“Algorithms are, by definition, impersonal and based on gross data and generalized assumptions. The people writing algorithms, even those grounded in data, are a non-representative subset of the population.”</li>
<li>“If you start at a place of inequality and you use algorithms to decide what is a likely outcome for a person/system, you inevitably reinforce inequalities.”</li>
<li>“We will all be mistreated as more homogenous than we are.”</li>
<li>“The result could be the institutionalization of biased and damaging decisions with the excuse of, ‘The computer made the decision, so we have to accept it.’”</li>
<li>“The algorithms will reflect the biased thinking of people. Garbage in, garbage out. Many dimensions of life will be affected, but few will be helped. Oversight will be very difficult or impossible.”</li>
<li>“Algorithms value efficiency over correctness or fairness, and over time their evolution will continue the same priorities that initially formulated them.”</li>
<li>“One of the greatest challenges of the next era will be balancing protection of intellectual property in algorithms with protecting the subjects of those algorithms from unfair discrimination and social engineering.”</li>
<li>“Algorithms purport to be fair, rational and unbiased but just enforce prejudices with no recourse.”</li>
<li>“Unless the algorithms are essentially open source and as such can be modified by user feedback in some fair fashion, the power that likely algorithm-producers (corporations and governments) have to make choices favorable to themselves, whether in internet terms of service or adhesion contracts or political biases, will inject both conscious and unconscious bias into algorithms.”</li>
</ul>
<p><a class="toc-anchor" name="theme-5-algorithmic-categorizations-deepen-divides"></a><a class="toc-anchor" name="theme-5-algorithmic-categorizations-deepen-divides"></a></p>
<h4><u>Theme 5: Algorithmic categorizations deepen divides</u></h4>
<p>Two connected ideas about societal divisions were evident in many respondents’ answers. First, they predicted that an algorithm-assisted future will widen the gap between the digitally savvy (predominantly the most well-off, who are the most desired demographic in the new information ecosystem) and those who are not nearly as connected or able to participate. Second, they said social and political divisions will be abetted by algorithms, as algorithm-driven categorizations and classifications steer people into echo chambers of repeated and reinforced media and political content. Two illustrative answers:</p>
<p><strong>Ryan Hayes</strong>, owner of Fit to Tweet, commented, “Twenty years ago we talked about the ‘digital divide’ being people who had access to a computer at home vs. those that didn’t, or those who had access to the internet vs. those who didn’t …. Ten years from now, though, the life of someone whose capabilities and perception of the world is augmented by sensors and processed with powerful AI and connected to vast amounts of data is going to be vastly different from that of those who don’t have access to those tools or knowledge of how to utilize them. And that divide will be self-perpetuating, where those with fewer capabilities will be more vulnerable in many ways to those with more.”</p>
<p><strong>Adam Gismondi</strong>, a visiting scholar at Boston College, wrote, “I am fearful that as users are quarantined into distinct ideological areas, human capacity for empathy may suffer. Brushing up against contrasting viewpoints challenges us, and if we are able to (actively or passively) avoid others with different perspectives, it will negatively impact our society. It will be telling to see what features our major social media companies add in coming years, as they will have tremendous power over the structure of information flow.”</p>
<p>A sampling of quote excerpts tied to this theme from other respondents (for details, <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">read the fuller versions</a> in the full report):</p>
<blockquote><p>The overall effect will be positive for some individuals. It will be negative for the poor and the uneducated. As a result, the digital divide and wealth disparity will grow. It will be a net negative for society.</p></blockquote>
<ul>
<li>“If the current economic order remains in place, then I do not see the growth of data-driven algorithms providing much benefit to anyone outside of the richest in society.”</li>
<li>“Social inequalities will presumably become reified.”</li>
<li>“The major risk is that less-regular users, especially those who cluster on one or two sites or platforms, won’t develop that navigational and selection facility and will be at a disadvantage.”</li>
<li>“Algorithms make discrimination more efficient and sanitized. Positive impact will be increased profits for organizations able to avoid risk and costs. Negative impacts will be carried by all deemed by algorithms to be risky or less profitable.”</li>
<li>“Society will be stratified by which trust/identity provider one can afford/qualify to go with. The level of privacy and protection will vary. Lois McMaster [Bujold]’s <a href="https://en.wikipedia.org/wiki/Jackson%27s_Whole"><em>Jackson’s Whole</em></a> suddenly seems a little more chillingly realistic.”</li>
<li>“We have radically divergent sets of values, political and other, and algos are always rooted in the value systems of their creators. So the scenario is one of a vast opening of opportunity – economic and otherwise – under the control of either the likes of Zuckerberg or the grey-haired movers of global capital or ….”</li>
<li>“The overall effect will be positive for some individuals. It will be negative for the poor and the uneducated. As a result, the digital divide and wealth disparity will grow. It will be a net negative for society.”</li>
<li>“Racial exclusion in consumer targeting. Gendered exclusion in consumer targeting. Class exclusion in consumer targeting …. Nationalistic exclusion in consumer targeting.”</li>
<li>“If the algorithms directing news flow suppress contradictory information – information that challenges the assumptions and values of individuals – we may see increasing extremes of separation in worldviews among rapidly diverging subpopulations.”</li>
<li>“We may be heading for lowest-common-denominator information flows.”</li>
<li>“Efficiency and the pleasantness and serotonin that come from prescriptive order are highly overrated. Keeping some chaos in our lives is important.”</li>
</ul>
<p>A number of participants in this canvassing expressed concerns over the change in the public’s information diets, the “atomization of media,” an over-emphasis of the extreme, ugly, weird news, and the favoring of “truthiness” over more-factual material that may be vital to understanding how to be a responsible citizen of the world.</p>
<p><a class="toc-anchor" name="theme-6-unemployment-will-rise"></a><a class="toc-anchor" name="theme-6-unemployment-will-rise"></a></p>
<h4><u>Theme 6: Unemployment will rise</u></h4>
<p>The spread of artificial intelligence (AI) has the potential to create major unemployment and all the fallout from that.</p>
<p>An anonymous CEO said, “If a task can be effectively represented by an algorithm, then it can be easily performed by a machine. The negative trend I see here is that – with the rise of the algorithm – humans will be replaced by machines/computers for many jobs/tasks. What will then be the fate of Man?”</p>
<p>A sampling of quote excerpts tied to this theme from other respondents (for details, <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">read the fuller versions</a> in the full report):</p>
<blockquote><p>I foresee algorithms replacing almost all workers with no real options for the replaced humans.</p></blockquote>
<ul>
<li>“AI and robots are likely to disrupt the workforce to a potential 100% human unemployment. They will be smarter more efficient and productive and cost less, so it makes sense for corporations and business to move in this direction.”</li>
<li>“The massive boosts in productivity due to automation will increase the disparity between workers and owners of capital.”</li>
<li>“Modern Western society is built on a societal model whereby Capital is exchanged for Labour to provide economic growth. If Labour is no longer part of that exchange, the ramifications will be immense.”</li>
<li>“No jobs, growing population and less need for the average person to function autonomously. Which part of this is warm and fuzzy?”</li>
<li>“I foresee algorithms replacing almost all workers with no real options for the replaced humans.”</li>
<li>“In the long run, it could be a good thing for individuals by doing away with low-value repetitive tasks and motivating them to perform ones that create higher value.”</li>
<li>“Hopefully, countries will have responded by implementing forms of minimal guaranteed living wages and free education past K-12; otherwise the brightest will use online resources to rapidly surpass average individuals and the wealthiest will use their economic power to gain more political advantages.”</li>
</ul>
<p><a class="toc-anchor" name="theme-7-the-need-grows-for-algorithmic-literacy-transparency-and-oversight"></a><a class="toc-anchor" name="theme-7-the-need-grows-for-algorithmic-literacy-transparency-and-oversight"></a></p>
<h4><u>Theme 7: The need grows for algorithmic literacy, transparency and oversight</u></h4>
<p>The respondents to this canvassing offered a variety of ideas about how individuals and the broader culture might respond to the algorithm-ization of life. They argued for public education to instill literacy about how algorithms function in the general public. They also noted that those who create and evolve algorithms are not held accountable to society and argued there should be some method by which they are. Representative comments:</p>
<p><strong>Susan Etlinger</strong>, industry analyst at Altimeter Group, said, “Much like the way we increasingly wish to know the place and under what conditions our food and clothing are made, we should question how our data and decisions are made as well. What is the supply chain for that information? Is there clear stewardship and an audit trail? Were the assumptions based on partial information, flawed sources or irrelevant benchmarks? Did we train our data sufficiently? Were the right stakeholders involved, and did we learn from our mistakes? The upshot of all of this is that our entire way of managing organizations will be upended in the next decade. The power to create and change reality will reside in technology that only a few truly understand. So to ensure that we use algorithms successfully, whether for financial or human benefit or both, we need to have governance and accountability structures in place. Easier said than done, but if there were ever a time to bring the smartest minds in industry together with the smartest minds in academia to solve this problem, this is the time.”</p>
<p><strong>Chris Kutarna</strong>, author of<em> Age of Discovery</em> and fellow at the Oxford Martin School, wrote, “Algorithms are an explicit form of heuristic, a way of routinizing certain choices and decisions so that we are not constantly drinking from a fire hydrant of sensory inputs. That coping strategy has always been co-evolving with humanity, and with the complexity of our social systems and data environments. Becoming explicitly aware of our simplifying assumptions and heuristics is an important site at which our intellects and influence mature. What is different now is the increasing power to program these heuristics explicitly, to perform the simplification outside of the human mind and within the machines and platforms that deliver data to billions of individual lives. It will take us some time to develop the wisdom and the ethics to understand and direct this power. In the meantime, we honestly don’t know how well or safely it is being applied. The first and most important step is to develop better social awareness of who, how, and where it is being applied.”</p>
<p>A sampling of quote excerpts tied to this theme from other respondents (for details, <a href="https://www.pewinternet.org/2017/02/08/theme-1-algorithms-will-continue-to-spread-everywhere/">read the fuller versions</a> in the full report):</p>
<blockquote><p>We need some kind of rainbow coalition to come up with rules to avoid allowing inbuilt bias and groupthink to effect the outcomes.</p></blockquote>
<ul>
<li>“Who guards the guardians? And, in particular, which ‘guardians’ are doing what, to whom, using the vast collection of information?”</li>
<li>“There are no incentives in capitalism to fight filter bubbles, profiling, and the negative effects, and governmental/international governance is virtually powerless.”</li>
<li>“Oversight mechanisms might include stricter access protocols; sign off on ethical codes for digital management and named stewards of information; online tracking of an individual’s reuse of information; opt-out functions; setting timelines on access; no third-party sale without consent.”</li>
<li>“Unless there is an increased effort to make true information literacy a part of basic education, there will be a class of people who can use algorithms and a class used by algorithms.”</li>
<li>“Consumers have to be informed, educated, and, indeed, activist in their orientation toward something subtle. This is what computer literacy is about in the 21st century.”</li>
<li>“Finding a framework to allow for transparency and assess outcomes will be crucial. Also a need to have a broad understanding of the algorithmic ‘value chain’ and that data is the key driver and as valuable as the algorithm which it trains.”</li>
<li>“Algorithmic accountability is a big-tent project, requiring the skills of theorists and practitioners, lawyers, social scientists, journalists, and others. It’s an urgent, global cause with committed and mobilized experts looking for support.”</li>
<li>“Eventually, software liability law will be recognized to be in need of reform, since right now, literally, coders can get away with murder.”</li>
<li>“The Law of Unintended Consequences indicates that the increasing layers of societal and technical complexity encoded in algorithms ensure that unforeseen catastrophic events will occur – probably not the ones we were worrying about.”</li>
<li>“Eventually we will evolve mechanisms to give consumers greater control that should result in greater understanding and trust …. The pushback will be inevitable but necessary and will, in the long run, result in balances that are more beneficial for all of us.”</li>
<li>“We need some kind of rainbow coalition to come up with rules to avoid allowing inbuilt bias and groupthink to effect the outcomes.”</li>
<li>“Algorithms are too complicated to ever be transparent or to ever be completely safe. These factors will continue to influence the direction of our culture.”</li>
<li>“I expect meta-algorithms will be developed to try to counter the negatives of algorithms.”</li>
</ul>
<p>Anonymous respondents shared these one-liners on the topic:</p>
<ul>
<li>“The golden rule: He who owns the gold makes the rules.”</li>
<li>“The bad guys appear to be way ahead of the good guys.”</li>
<li>“Resistance is futile.”</li>
<li>“Algorithms are defined by people who want to sell you something (goods, services, ideologies) and will twist the results to favor doing so.”</li>
<li>“Algorithms are surely helpful but likely insufficient unless combined with human knowledge and political will.”</li>
</ul>
<p>Finally, this prediction from an anonymous participant who sees the likely endpoint to be one of two extremes:</p>
<p>“The overall impact will be utopia or the end of the human race; there is no middle ground foreseeable. I suspect utopia given that we have survived at least one existential crisis (nuclear) in the past and that our track record toward peace, although slow, is solid.”</p>
<p><a class="toc-anchor" name="key-experts-thinking-about-the-future-impacts-of-algorithms"></a><a class="toc-anchor" name="key-experts-thinking-about-the-future-impacts-of-algorithms"></a></p>
<h3>Key experts’ thinking about the future impacts of algorithms</h3>
<p>Following is a brief collection of comments by several of the many top analysts who participated in this canvassing:</p>
<p><a class="toc-anchor" name="steering-people-to-useful-information"></a><a class="toc-anchor" name="steering-people-to-useful-information"></a></p>
<h4>‘Steering people to useful information’</h4>
<p><strong>Vinton Cerf</strong>, Internet Hall of Fame member and vice president and chief internet evangelist at Google: “Algorithms are mostly intended to steer people to useful information and I see this as a net positive.”</p>
<p><a class="toc-anchor" name="beware-unverified-untracked-unrefined-models"></a><a class="toc-anchor" name="beware-unverified-untracked-unrefined-models"></a></p>
<h4>Beware ‘unverified, untracked, unrefined models’</h4>
<p><strong>Cory Doctorow</strong>, writer, computer science activist-in-residence at MIT Media Lab and co-owner of Boing Boing, responded, “The choices in this question are too limited. The right answer is, ‘If we use machine learning models rigorously, they will make things better; if we use them to paper over injustice with the veneer of machine empiricism, it will be worse.’ Amazon uses machine learning to optimize its sales strategies. When they make a change, they make a prediction about its likely outcome on sales, then they use sales data from that prediction to refine the model. Predictive sentencing scoring contractors to America’s prison system use machine learning to optimize sentencing recommendation. Their model also makes predictions about likely outcomes (on reoffending), but there is no tracking of whether their model makes good predictions, and no refinement. This frees them to make terrible predictions without consequence. This characteristic of unverified, untracked, unrefined models is present in many places: terrorist watchlists; drone-killing profiling models; modern redlining/Jim Crow systems that limit credit; predictive policing algorithms; etc. If we mandate, or establish normative limits, on practices that correct this sleazy conduct, then we can use empiricism to correct for bias and improve the fairness and impartiality of firms and the state (and public/private partnerships). If, on the other hand, the practice continues as is, it terminates with a kind of Kafkaesque nightmare where we do things ‘because the computer says so’ and we call them fair ‘because the computer says so.’”</p>
<p><a class="toc-anchor" name="a-general-trend-toward-positive-outcomes-will-prevail"></a><a class="toc-anchor" name="a-general-trend-toward-positive-outcomes-will-prevail"></a></p>
<h4>‘A general trend toward positive outcomes will prevail’</h4>
<p><strong>Jonathan Grudin</strong>, principal researcher at Microsoft, said, “We are finally reaching a state of symbiosis or partnership with technology. The algorithms are not in control; people create and adjust them. However, positive effects for one person can be negative for another, and tracing causes and effects can be difficult, so we will have to continually work to understand and adjust the balance. Ultimately, most key decisions will be political, and I’m optimistic that a general trend toward positive outcomes will prevail, given the tremendous potential upside to technology use. I’m less worried about bad actors prevailing than I am about unintended and unnoticed negative consequences sneaking up on us.”</p>
<p><a class="toc-anchor" name="faceless-systems-more-interested-in-surveillance-and-advertising-than-actual-service"></a><a class="toc-anchor" name="faceless-systems-more-interested-in-surveillance-and-advertising-than-actual-service"></a></p>
<h4>‘Faceless systems more interested in surveillance and advertising than actual service’</h4>
<p><strong>Doc Searls</strong>, journalist, speaker and director of Project VRM at Harvard University’s Berkman Center, wrote, “The biggest issue with algorithms today is the black-box nature of some of the largest and most consequential ones. An example is the one used by Dun &amp; Bradstreet to decide credit worthiness. The methods behind the decisions it makes are completely opaque, not only to those whose credit is judged, but to most of the people running the algorithm as well. Only the programmers are in a position to know for sure what the algorithm does, and even they might not be clear about what’s going on. In some cases there is no way to tell exactly why or how a decision by an algorithm is reached. And even if the responsible parties do know exactly how the algorithm works, they will call it a trade secret and keep it hidden. There is already pushback against the opacity of algorithms, and the sometimes vast systems behind them. Many lawmakers and regulators also want to see, for example, Google’s and Facebook’s vast server farms more deeply known and understood. These things have the size, scale, and in some ways the importance of nuclear power plants and oil refineries, yet enjoy almost no regulatory oversight. This will change. At the same time, so will the size of the entities using algorithms. They will get smaller and more numerous, as more responsibility over individual lives moves away from faceless systems more interested in surveillance and advertising than actual service.”</p>
<p><a class="toc-anchor" name="a-call-for-algorithmictransparency"></a><a class="toc-anchor" name="a-call-for-algorithmictransparency"></a></p>
<h4>A call for #AlgorithmicTransparency</h4>
<p><strong>Marc Rotenberg</strong>, executive director of the Electronic Privacy Information Center, observed, “The core problem with algorithmic-based decision-making is the lack of accountability. Machines have literally become black boxes – even the developers and operators do not fully understand how outputs are produced. The problem is further exacerbated by ‘digital scientism’ (my phrase) – an unwavering faith in the reliability of big data. ‘Algorithmic transparency’ should be established as a fundamental requirement for all AI-based decision-making. There is a larger problem with the increase of algorithm-based outcomes beyond the risk of error or discrimination – the increasing opacity of decision-making and the growing lack of human accountability. We need to confront the reality that power and authority are moving from people to machines. That is why #AlgorithmicTransparency is one of the great challenges of our era.”</p>
<p><a class="toc-anchor" name="the-data-will-be-misused-in-various-ways"></a><a class="toc-anchor" name="the-data-will-be-misused-in-various-ways"></a></p>
<h4>The data ‘will be misused in various ways’</h4>
<p><strong>Richard Stallman</strong>, Internet Hall of Fame member and president of the Free Software Foundation, said, “People will be pressured to hand over all the personal data that the algorithms would judge. The data, once accumulated, will be misused in various ways – by the companies that collect them, by rogue employees, by crackers that steal the data from the company’s site, and by the state via National Security Letters. I have heard that people who refuse to be used by Facebook are discriminated against in some ways. Perhaps soon they will be denied entry to the U.S., for instance. Even if the U.S. doesn’t actually do that, people will fear that it will. Compare this with China’s social obedience score for internet users.”</p>
<p><a class="toc-anchor" name="people-must-live-with-outcomes-of-algorithms-even-though-they-are-fearful-of-the-risks"></a><a class="toc-anchor" name="people-must-live-with-outcomes-of-algorithms-even-though-they-are-fearful-of-the-risks"></a></p>
<h4>People must live with outcomes of algorithms ‘even though they are fearful of the risks’</h4>
<p><strong>David Clark</strong>, Internet Hall of Fame member and senior research scientist at MIT, replied, “I see the positive outcomes outweighing the negative, but the issue will be that certain people will suffer negative consequences, perhaps very serious, and society will have to decide how to deal with these outcomes. These outcomes will probably differ in character, and in our ability to understand why they happened, and this reality will make some people fearful. But as we see today, people feel that they must use the internet to be a part of society. Even if they are fearful of the consequences, people will accept that they must live with the outcomes of these algorithms, even though they are fearful of the risks.”</p>
<p><a class="toc-anchor" name="every-area-of-life-will-be-affected-every-single-one"></a><a class="toc-anchor" name="every-area-of-life-will-be-affected-every-single-one"></a></p>
<h4>‘EVERY area of life will be affected. Every. Single. One.’</h4>
<p><strong>Baratunde Thurston</strong>, Director’s Fellow at MIT Media Lab, Fast Company columnist, and former digital director of The Onion, wrote: “Main positive changes: 1) The excuse of not knowing things will be reduced greatly as information becomes even more connected and complete. 2) Mistakes that result from errors in human judgment, ‘knowledge,’ or reaction time will be greatly reduced. Let’s call this the ‘robots drive better than people’ principle. Today’s drivers will whine, but in 50 years no one will want to drive when they can use that transportation time to experience a reality-indistinguishable immersive virtual environment filled with a bunch of Beyoncé bots.</p>
<p>“3) Corruption that exists today as a result of human deception will decline significantly—bribes, graft, nepotism. If the algorithms are built well and robustly, the opportunity to insert this inefficiency (e.g., hiring some idiot because he’s your cousin) should go down. 4) In general, we should achieve a much more efficient distribution of resources, including expensive (in dollars or environmental cost) resources like fossil fuels. Basically, algorithmic insight will start to affect the design of our homes, cities, transportation networks, manufacturing levels, waste management processing, and more. There’s a lot of redundancy in a world where every American has a car she never uses. We should become far more energy efficient once we reduce the redundancy of human-drafted processes.</p>
<p>“But there will be negative changes: 1) There will be an increased speed of interactions and volume of information processed—everything will get faster. None of the efficiency gains brought about by technology has ever lead to more leisure or rest or happiness. We will simply shop more, work more, decide more things because our capacity to do all those will have increased. It’s like adding lanes to the highway as a traffic management solution. When you do that, you just encourage more people to drive. The real trick is to not add more car lanes but build a world in which fewer people need or want to drive.</p>
<p>“2) There will be algorithmic and data-centric oppression. Given that these systems will be designed by demonstrably imperfect and biased human beings, we are likely to create new and far less visible forms of discrimination and oppression. The makers of these algorithms and the collectors of the data used to test and prime them have nowhere near a comprehensive understanding of culture, values, and diversity. They will forget to test their image recognition on dark skin or their medical diagnostic tools on Asian women or their transport models during major sporting events under heavy fog. We will assume the machines are smarter, but we will realize they are just as dumb as we are but better at hiding it.</p>
<p>“3) Entire groups of people will be excluded and they most likely won’t know about the parallel reality they don’t experience. Every area of life will be affected. Every. Single. One.”</p>
<p><a class="toc-anchor" name="a-call-for-industry-reform-and-more-savvy-regulatory-regimes"></a><a class="toc-anchor" name="a-call-for-industry-reform-and-more-savvy-regulatory-regimes"></a></p>
<h4>A call for ‘industry reform’ and ‘more savvy regulatory regimes’</h4>
<p>Technologist<strong> Anil Dash</strong> said, “The best parts of algorithmic influence will make life better for many people, but the worst excesses will truly harm the most marginalized in unpredictable ways. We’ll need both industry reform within the technology companies creating these systems and far more savvy regulatory regimes to handle the complex challenges that arise.”</p>
<p><a class="toc-anchor" name="we-are-a-society-that-takes-its-life-direction-from-the-palm-of-our-hands"></a><a class="toc-anchor" name="we-are-a-society-that-takes-its-life-direction-from-the-palm-of-our-hands"></a></p>
<h4>‘We are a society that takes its life direction from the palm of our hands’</h4>
<p><strong>John Markoff</strong>, author of <em>Machines of Loving Grace: The Quest for Common Ground Between Humans and Robots</em> and senior writer at The New York Times, observed, “I am most concerned about the lack of algorithmic transparency. Increasingly we are a society that takes its life direction from the palm of our hands – our smartphones. Guidance on everything from what is the best Korean BBQ to who to pick for a spouse is algorithmically generated. There is little insight, however, into the values and motives of the designers of these systems.”</p>
<p><a class="toc-anchor" name="fix-the-organizational-societal-and-political-climate-weve-constructed"></a><a class="toc-anchor" name="fix-the-organizational-societal-and-political-climate-weve-constructed"></a></p>
<h4>Fix the ‘organizational, societal and political climate we’ve constructed’</h4>
<p><strong>danah boyd</strong>, founder of Data &amp; Society, commented, “An algorithm means nothing by itself. What’s at stake is how a ‘model’ is created and used. A model is comprised of a set of data (e.g., training data in a machine learning system) alongside an algorithm. The algorithm is nothing without the data. But the model is also nothing without the use case. The same technology can be used to empower people (e.g., identify people at risk) or harm them. It all depends on who is using the information to what ends (e.g., social services vs. police). Because of unhealthy power dynamics in our society, I sadly suspect that the outcomes will be far more problematic – mechanisms to limit people’s opportunities, segment and segregate people into unequal buckets, and leverage surveillance to force people into more oppressive situations. But it doesn’t have to be that way. What’s at stake has little to do with the technology; it has everything to do with the organizational, societal and political climate we’ve constructed.”</p>
<p><a class="toc-anchor" name="we-have-an-algorithmic-problem-already-credit-scores"></a><a class="toc-anchor" name="we-have-an-algorithmic-problem-already-credit-scores"></a></p>
<h4>We have an algorithmic problem already: Credit scores</h4>
<p><strong>Henning Schulzrinne</strong>, Internet Hall of Fame member and professor at Columbia University, noted, “We already have had early indicators of the difficulties with algorithmic decision-making, namely credit scores. Their computation is opaque and they were then used for all kinds of purposes far removed from making loans, such as employment decisions or segmenting customers for different treatment. They leak lots of private information and are disclosed, by intent or negligence, to entities that do not act in the best interest of the consumer. Correcting data is difficult and time-consuming, and thus unlikely to be available to individuals with limited resources. It is unclear how the proposed algorithms address these well-known problems, given that they are often subject to no regulations whatsoever. In many areas, the input variables are either crude (and often proxies for race), such as home ZIP code, or extremely invasive, such as monitoring driving behavior minute-by-minute. Given the absence of privacy laws, in general, there is every incentive for entities that can observe our behavior, such as advertising brokers, to monetize behavioral information. At minimum, institutions that have broad societal impact would need to disclose the input variables used, how they influence the outcome and be subject to review, not just individual record corrections. An honest, verifiable cost-benefit analysis, measuring improved efficiency or better outcomes against the loss of privacy or inadvertent discrimination, would avoid the ‘trust us, it will be wonderful and it’s AI!’ decision-making.”</p>
<p><a class="toc-anchor" name="algorithms-create-value-and-cut-costs-and-will-be-improved"></a><a class="toc-anchor" name="algorithms-create-value-and-cut-costs-and-will-be-improved"></a></p>
<h4>Algorithms ‘create value and cut costs’ and will be improved</h4>
<p><strong>Robert Atkinson</strong>, president of the Information Technology and Innovation Foundation, said, “Like virtually all past technologies, algorithms will create value and cut costs, far in excess of any costs. Moreover, as organizations and society get more experience with use of algorithms there will be natural forces toward improvement and limiting any potential problems.”</p>
<p><a class="toc-anchor" name="the-goal-should-be-to-help-people-question-authority"></a><a class="toc-anchor" name="the-goal-should-be-to-help-people-question-authority"></a></p>
<h4>‘The goal should be to help people question authority’</h4>
<p><strong>Judith Donath</strong> of Harvard Berkman Klein Center for Internet &amp; Society, replied, “Data can be incomplete, or wrong, and algorithms can embed false assumptions. The danger in increased reliance on algorithms is that is that the decision-making process becomes oracular: opaque yet unarguable. The solution is design. The process should not be a black box into which we feed data and out comes an answer, but a transparent process designed not just to produce a result, but to explain how it came up with that result. The systems should be able to produce clear, legible text and graphics that help the users – readers, editors, doctors, patients, loan applicants, voters, etc. – understand how the decision was made. The systems should be interactive, so that people can examine how changing data, assumptions, rules would change outcomes. The algorithm should not be the new authority; the goal should be to help people question authority.”</p>
<p><a class="toc-anchor" name="do-more-to-train-coders-with-diverse-world-views"></a><a class="toc-anchor" name="do-more-to-train-coders-with-diverse-world-views"></a></p>
<h4>Do more to train coders with diverse world views</h4>
<p><strong>Amy Webb</strong>, futurist and CEO at the Future Today Institute, wrote, “In order to make our machines think, we humans need to help them learn. Along with other pre-programmed training datasets, our personal data is being used to help machines make decisions. However, there are no standard ethical requirements or mandate for diversity, and as a result we’re already starting to see a more dystopian future unfold in the present. There are too many examples to cite, but I’ll list a few: would-be borrowers turned away from banks, individuals with black-identifying names seeing themselves in advertisements for criminal background searches, people being denied insurance and health care. Most of the time, these problems arise from a limited worldview, not because coders are inherently racist. Algorithms have a nasty habit of doing exactly what we tell them to do. Now, what happens when we’ve instructed our machines to learn from us? And to begin making decisions on their own? The only way to address algorithmic discrimination in the future is to invest in the present. The overwhelming majority of coders are white and male. Corporations must do more than publish transparency reports about their staff – they must actively invest in women and people of color, who will soon be the next generation of workers. And when the day comes, they must choose new hires both for their skills and their worldview. Universities must redouble their efforts not only to recruit a diverse body of students –administrators and faculty must support them through to graduation. And not just students. Universities must diversify their faculties, to ensure that students see themselves reflected in their teachers.”</p>
<p><a class="toc-anchor" name="the-impact-in-the-short-term-will-be-negative-in-the-longer-term-it-will-be-positive"></a><a class="toc-anchor" name="the-impact-in-the-short-term-will-be-negative-in-the-longer-term-it-will-be-positive"></a></p>
<h4>The impact in the short term will be negative; in the longer term it will be positive</h4>
<p><strong>Jamais Cascio</strong>, distinguished fellow at the Institute for the Future, observed, “The impact of algorithms in the early transition era will be overall negative, as we (humans, human society and economy) attempt to learn how to integrate these technologies. Bias, error, corruption and more will make the implementation of algorithmic systems brittle, and make exploiting those failures for malice, political power or <a href="http://knowyourmeme.com/memes/i-did-it-for-the-lulz">lulz</a> comparatively easy. By the time the transition takes hold – probably a good 20 years, maybe a bit less – many of those problems will be overcome, and the ancillary adaptations (e.g., potential rise of universal basic income) will start to have an overall benefit. In other words, shorter term (this decade) negative, longer term (next decade) positive.”</p>
<p><a class="toc-anchor" name="the-story-will-keep-shifting"></a><a class="toc-anchor" name="the-story-will-keep-shifting"></a></p>
<h4>The story will keep shifting</h4>
<p><strong>Mike Liebhold</strong>, senior researcher and distinguished fellow at the Institute for the Future, commented, “The future effects of algorithms in our lives will shift over time as we master new competencies. The rates of adoption and diffusion will be highly uneven, based on natural variables of geographies, the environment, economies, infrastructure, policies, sociologies, psychology, and – most importantly – education. The growth of human benefits of machine intelligence will be most constrained by our collective competencies to design and interact effectively with machines. At an absolute minimum, we need to learn to form effective questions and tasks for machines, how to interpret responses and how to simply detect and repair a machine mistake.”</p>
<p><a class="toc-anchor" name="make-algorithms-comprehensible-predictable-and-controllable"></a><a class="toc-anchor" name="make-algorithms-comprehensible-predictable-and-controllable"></a></p>
<h4>Make algorithms ‘comprehensible, predictable and controllable’</h4>
<p><strong>Ben Shneiderman</strong>, professor of computer science at the University of Maryland, wrote, “When well-designed, algorithms amplify human abilities, but they must be comprehensible, predictable and controllable. This means they must be designed to be transparent so that users can understand the impacts of their use and they must be subject to continuing evaluation so that critics can assess bias and errors. Every system needs a responsible contact person/organization that maintains/updates the algorithm and a social structure so that the community of users can discuss their experiences.”</p>
<p><a class="toc-anchor" name="in-key-cases-give-the-user-control"></a><a class="toc-anchor" name="in-key-cases-give-the-user-control"></a></p>
<h4>In key cases, give the user control</h4>
<p><strong>David Weinberger</strong>, senior researcher at the Harvard Berkman Klein Center for Internet &amp; Society, said, “Algorithmic analysis at scale can turn up relationships that are predictive and helpful even if they are beyond the human capacity to understand them. This is fine where the stakes are low, such as a book recommendation. Where the stakes are high, such as algorithmically filtering a news feed, we need to be far more careful, especially when the incentives for the creators are not aligned with the interests of the individuals or of the broader social goods. In those latter cases, giving more control to the user seems highly advisable.”</p>
</div>
<h2 class="nolinks">Conclusion</h2>
<p>If you didn&#8217;t know what an algorithm was at the start of this article, hopefully, now, you have a more concrete understanding of the somewhat elusive term. As professional developers, it is important that we understand that the code we write can be analyzed and optimized, and it is important that we take the time to do this analysis of the performance of our code.</p>
<p>Any fun algorithm practice problems you&#8217;ve found? Perhaps a dynamic programming &#8220;knapsack problem&#8221;, or &#8220;drunken walk&#8221;? Or maybe you know of some best practices of recursion in Ruby that differ from the same functions implemented in Python. Share them in the comments!</p>
<blockquote class="wp-embedded-content" data-secret="dnswUWyj7q"><p><a href="https://xinicomms.com/the-fastest-high-resolution-screen-printing-machines-for-mass-production/">The Fastest High Resolution Screen Printing Machines For Mass Production</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;The Fastest High Resolution Screen Printing Machines For Mass Production&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/the-fastest-high-resolution-screen-printing-machines-for-mass-production/embed/#?secret=dnswUWyj7q" data-secret="dnswUWyj7q" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/algorithm-design-writting/">Algorithm Design Writting</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>The Digital Movement In Marketing For 2019 &#8211; What Next?</title>
		<link>https://xinicomms.com/the-digital-movement-in-marketing-for-2019-what-next/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-digital-movement-in-marketing-for-2019-what-next</link>
				<pubDate>Tue, 10 Sep 2019 15:44:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Influencer Marketing]]></category>
		<category><![CDATA[Marketing Communications]]></category>
		<category><![CDATA[Social Media Manager]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4515</guid>
				<description><![CDATA[<p>Digital Marketing And Influencer Marketing Still Making Huge Waves. What Other Marketing Strategy Can Silent Digital Marketing In The Coming Years? Thanks to growthrocks for this piece. And please read to your understanding as we hope to guide you through this article. We are already past the first half of the year, which means one [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/the-digital-movement-in-marketing-for-2019-what-next/">The Digital Movement In Marketing For 2019 &#8211; What Next?</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>Digital Marketing And Influencer Marketing Still Making Huge Waves.</p>
<p>What Other Marketing Strategy Can Silent <a href="https://xinicomms.com/digital-marketing/seo/">Digital Marketing</a> In The Coming Years?</p>
<p>Thanks to <a href="https://growthrocks.com/blog/top-digital-marketing-articles-2019/">growthrocks</a> for this piece. And please read to your understanding as we hope to guide you through this article.</p>
<div class="vc_row row-container" data-parent="true" data-section="0">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>We are already past the first half of the year, which means one thing: The first half of 2019 is behind us.</p>
<p>Now I believe it is a good time to take a look back and see what the first half of the year had to offer to our digital marketing collective knowledge. We researched and gathered the top digital marketing articles, according to the number of total engagement on social media and their total number of upvotes in their communities.</p>
<p><strong>This is what most digital marketers learnt this year. </strong>If you didn’t have the chance to read these posts, you now do.</p>
<p><strong>I’d suggest bookmarking this page </strong>so you can read the blog posts at your pace.</p>
<p>And so here are the best digital marketing articles: <strong>The Top 3 Posts of The Top 15 Digital Marketing</strong> <b>Blogs </b>for the first half of 2019, in alphabetical order.<strong> </strong>Enjoy.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="1">
<div class="row single-top-padding no-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/1Ahrefs-uai-258x258.jpeg" alt="" width="258" height="258" data-uniqueid="63442-162904" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/1Ahrefs.jpeg" data-path="2019/07/1Ahrefs.jpeg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>1. Ahrefs</strong></h2>
<h3><a href="https://ahrefs.com/blog/google-index/">&gt; 10 Ways to Get Google to Index Your Site (That Actually Work)</a> – By Joshua Hardwick</h3>
<h3><a href="https://ahrefs.com/blog/how-to-improve-seo/">&gt; How to Improve SEO: 8 Tactics That Don’t Require New Content </a>– By Si Quan Ong</h3>
<h3><a href="https://ahrefs.com/blog/how-to-write-a-blog-post/">&gt; How to Write a Blog Post in 9 Steps (That People Actually Want to Read)</a> – By Rebekah Bek</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="2">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Our list begins with, Ahrefs.  Ahrefs is first and foremost a powerful SEO tool. From keyword research to content explorer, and from site audit to link building, Ahrefs is one of the better SEO tools out there.</p>
<p>Whether you use Ahrefs for your needs or not, its blog provides huge value for everyone. Its purpose is to help you get better at SEO and it does so through three main categories: SEO Basics – Link Building – Keyword Research. These categories feature blogs like How to Learn SEO, Complete Link Building Guide, and How to Use Keyword Planner. The article authors are SEO marketing practitioners and industry experts, including Joshua Hardwick (Head of Content), Rebekah Bek &amp; Si Quan Ong (Marketing), and Tim Soulo (Ahrefs CMO).</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="3">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/3Backlinkoo-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63451-182088" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/3Backlinkoo.jpg" data-path="2019/07/3Backlinkoo.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>2. Backlinko</strong></h2>
<h3><a href="https://backlinko.com/content-study">&gt; We Analyzed 912 Million Blog Posts. Here’s What We Learned About Content Marketing</a> – By Brian Dean</h3>
<h3><a href="https://backlinko.com/copywriting-guide">&gt; Copywriting: The Definitive Guide</a> – By Brian Dean</h3>
<h3><a href="https://backlinko.com/email-outreach-study">&gt; We Analyzed 12 Million Outreach Emails. Here’s What We Learned</a> – By Brian Dean</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="4">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Brian Dean needs no introduction to anyone who claims to know anything about SEO. Brian started his blog in 2013 when he wanted to learn more about SEO but weren’t enough resources to do so. And so, from his Airbnb in Lisbon, he started sharing strategies and tips in the form of SEO articles of high value. After a few months passed and some traction was built, Brian had become a household name in the online marketing communities.</p>
<p>Backlinko is nowadays a popular go-to resource for actionable SEO and content marketing advice. More than 3 million visitors every year, trust Backlinko and read Brian’s digital marketing articles. For those who want to grow their organic traffic and rank higher, Backlinko’s blog is what they are looking for.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="5">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/3Buzzsumo-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63444-223896" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/3Buzzsumo.jpg" data-path="2019/07/3Buzzsumo.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>3. BuzzSumo</strong></h2>
<h3><a href="https://buzzsumo.com/blog/facebook-engagement-guide/">&gt; The 2019 Ultimate Guide to Facebook Engagement</a> – By Susan Moeller</h3>
<h3><a href="https://buzzsumo.com/blog/steps-to-create-a-successful-profitable-blog/">&gt; 7 Steps To Create A Successful, Profitable Blog</a> – By Mike Allton</h3>
<h3><a href="https://buzzsumo.com/blog/best-b2b-content/">&gt; Best B2B Content: Analysis and Insights from Over 50,000 Articles</a> – By Dustin Stout</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="6">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>BuzzSumo is another powerful online marketing tool. Its mission is to help you with one thing: Content. Be it competitor content analysis, content ideas or finding key influencers to share your content with their audience, BuzzSumo is a popular tool for that. If you are looking to step up your content marketing game, then BuzzSumo is one of the best ways to do this.</p>
<p>BuzzSumo’s Blog is about Data-Driven Marketing Insights. BuzzSumo combines content marketing and technology in a unique way and helps you create viral content. Besides content-related marketing, inside the blog, you can find a lot of SEO and social media material from top content experts.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="7">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/4cmaa-uai-258x258.jpeg" alt="" width="258" height="258" data-uniqueid="63450-817100" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/4cmaa.jpeg" data-path="2019/07/4cmaa.jpeg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>4. Content Marketing Institute</strong></h2>
<h3><a href="https://contentmarketinginstitute.com/2019/04/delete-words-phrases/">&gt; Get Rid of These 25 Phrases and Words From Your Content</a> – By Julia McCoy</h3>
<h3><a href="https://contentmarketinginstitute.com/2019/03/optimize-images-seo/">&gt; 9 Steps to Optimize Images for SEO</a> – By Isaac Justesen</h3>
<h3><a href="https://contentmarketinginstitute.com/2019/04/big-mistakes-content-marketing/">&gt; 24 Big Mistakes You Should Avoid in Content Marketing</a> – By Ann Gynn</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="8">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Content Marketing is King and Content Marketing Institute knows this well. Founded in 2010, CMI’s mission is to make you a better content marketer, and it’s one of the first blogs with a clear content marketing direction. CMI’S digital marketing articles promise to teach you how to develop a content strategy, how to create valuable content for your audience and how to measure what’s working (and what’s not), so you can make any appropriate changes.</p>
<p>Furthermore, CMI publishes Chief Content Officer, the first publication written <em>by</em> chief content officers <em>for</em> chief content officers. The digital magazine publishes three times a year and you can download all their issues for free.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="9">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/5Copyhackers-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63437-157455" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/5Copyhackers.jpg" data-path="2019/07/5Copyhackers.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>5. Copyhackers</strong></h2>
<h3><a href="https://copyhackers.com/2019/01/long-facebook-ad-copy/">&gt; Forget the Images: Long Facebook Ad Copy Works </a>– By Sarah Sal</h3>
<h3><a href="https://copyhackers.com/2019/05/writing-case-studies/">&gt; I’ve Helped Create 150+ Case Studies. Here’s (Almost) Everything I’ve Learned</a> – By Joel Klettke</h3>
<h3><a href="https://copyhackers.com/2019/02/inclusive-buyer-personas/">&gt; Inclusive Buyer Personas: Where new product ideas live and growth happens</a> – By Sonia Thompson</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="10">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p><span class="lt-line-clamp__line">Like the name gives away, Copyhackers is created with one particular breed of marketer in mind: the copywriter. Copyhackers is, as they call themselves, the home of conversion copywriting. </span></p>
<p>At Copyhackers, you are going to find blog posts dedicated to copywriting and content, as well as posts about your freelancing career as a copywriter. Therefore you can read from ‘How to write welcome emails’ and ‘How to write headlines’ to ‘How to write a project proposal’ and ‘How to plan a SaaS onboarding funnel’.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="11">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/6GrowthHackers-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63438-199806" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/6GrowthHackers.jpg" data-path="2019/07/6GrowthHackers.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>6. GrowthHackers</strong></h2>
<h3><a href="https://growthhackers.com/amas/dani-hart-founder-of-growth-gal-former-head-of-growth-at-growthhackers">&gt; AMA with Dani Hart, Founder of Growth Gal &amp; Former Head of Growth at GrowthHackers</a> – By Dani Hart</h3>
<h3><a href="https://growthhackers.com/amas/ama-with-jim-huffman-growthhit-ceo-author-of-the-growth-marketer-s-playbook-and-techstars-mentor">&gt; ΑΜΑ with Jim Huffman, GrowthHit CEO, Author of The Growth Marketer’s Playbook and Techstars Mentor</a> – By Jim Huffman</h3>
<h3><a href="https://growthhackers.com/amas/ama-with-kieran-flanagan-vp-of-growth-and-marketing-at-hubspot">&gt; AMA with Kieran Flanagan, VP of Growth and Marketing at Hubspot </a> – By Kieran Flanagan</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="12">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>GrowthHackers is a community founded by the man responsible for many marketing success stories, including the growth of Dropbox: Sean Ellis. Sean is also the man who came up with the word ‘growth hacking’ and introduced it to the digital marketing world. In 2013 he created a community and made a home for everyone who interested in this new approach of marketing.</p>
<p>The purpose of GrowthHackers.com is to give experiment-driven marketers a place to discuss what truly matters in driving sustainable customer acquisition growth. Users submit articles from their blogs or blogs that they find interesting as a conversation starter or just for anyone that might be interested in. One of the most intriguing parts of GrowthHackers, also, is the live AMA’s, where marketing experts around the world answer the questions of the community.</p>
<p>Oh! Don’t forget to take a look at its Growth Studies, too!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="13">
<div class="row single-top-padding no-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/7GrowthRocks-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63439-178947" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/7GrowthRocks.jpg" data-path="2019/07/7GrowthRocks.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>7. GrowthRocks</strong></h2>
<h3><a href="https://growthrocks.com/blog/linkedin-abtest-link-in-comment/">&gt; LinkedIn Experiment: Link in Post VS Link in Comment</a> – By Nicolas Lekkas</h3>
<h3><a href="https://growthrocks.com/blog/big-five-tech-companies-acquisitions/">&gt; The Big 5 Tech Companies &amp; Their Big 5 Acquisitions</a> – By Nicolas Lekkas</h3>
<h3><a href="https://growthrocks.com/blog/increase-organic-facebook-reach/">&gt; 12 Ways to Increase Organic Facebook Reach in 2019</a> – By Nicolas Lekkas</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="14">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>GrowthRocks is a growth hacking agency that helps startups and well-established companies to achieve rapid and sustainable growth. Since 2014 GrowthRocks grows along with their clients around the world. Their blog does, too.</p>
<p>The GrowthRocks blog is one of the most preferred digital destinations by growth hackers all over the globe. In the blog, you will find tech-focused articles and step-by-step guides, such as how to install Google scroll tracking event in Analytics, Zapier automations, as well as A/B tests the agency has done – or just a listing of the current growth hacking courses.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="15">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/http-_www.eventbrite.com_upload_file_48z826grsgXEtMViWSRaBh-uai-258x258.png" alt="" width="258" height="258" data-uniqueid="61888-162603" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/http-_www.eventbrite.com_upload_file_48z826grsgXEtMViWSRaBh.png" data-path="2018/12/http-_www.eventbrite.com_upload_file_48z826grsgXEtMViWSRaBh.png" data-width="300" data-height="300" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>8. Hubspot</strong></h2>
<h3><a href="https://blog.hubspot.com/marketing/email-marketing-stats">&gt; The Ultimate List of Email Marketing Stats for 2019</a> – By Caroline Forsey</h3>
<h3><a href="https://blog.hubspot.com/marketing/free-online-courses">&gt; The 60 Best Free Online Courses For Whatever You Want to Learn</a> – By Lisa Toner</h3>
<h3><a href="https://blog.hubspot.com/marketing/tips-to-stop-thinking-about-work">&gt; 6 Tips to Stop Thinking About Work After Work Hours [Infographic]</a> – By Caroline Forsey</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="16">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Hubspot is a developer and marketer of software products for inbound marketing and sales. It’s vastly known for its free CRM tool, used by small businesses. One of Hubspot’s co-founders, Brian Halligan, is also responsible for the term ‘Inbound Marketing’, which he coined.</p>
<p>Hubspot is one of the best all-around marketing blogs you can find. Its digital marketing articles expand in four basic categories: Marketing, Sales, Service, and News &amp; Trends. If you want to be up-to-date with the latest marketing, sales and service tips, Hubspot is an excellent place for that. You can also find Ebooks, guides, research &amp; reports, as well as free courses &amp; certifications.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="17">
<div class="row single-top-padding no-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/indiehackers_blog-uai-258x258.png" alt="" width="258" height="258" data-uniqueid="61912-848265" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/indiehackers_blog.png" data-path="2018/12/indiehackers_blog.png" data-width="500" data-height="500" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>9. Indie Hackers</strong></h2>
<h3><a href="https://www.indiehackers.com/@AntonElfimov/af688095de">&gt; We wasted $50K on Google Ads so you don’t have to</a> – By Anton Elfimov</h3>
<h3><a href="https://www.indiehackers.com/@mijustin/ideas-for-promoting-your-software-product-4c2f415595">&gt; Ideas for promoting your software product</a>  – By Justin Jackson</h3>
<h3><a href="https://www.indiehackers.com/@mjwhansen/5f7e6bf6ef">&gt; Bootstrapping a Business: 5 Years In</a> – By Michael Hansen</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="18">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Indie Hackers is a community made of founders, entrepreneurs, developers, and marketers. Users come together to share their experiences, give and receive feedback. In the community, you will find entrepreneurs with $100k/month companies talking openly with founders that make $10/month.</p>
<p>Every word you read in the posts and articles is usually written by someone who did something <em>first</em> and <em>then</em> went on to write about it. So rather than reading something vague about brand awareness you can be part of an A/B test for landing page and tell the founder your opinion.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="19">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/Cdf1SOnc_400x400-uai-258x258.png" alt="" width="258" height="258" data-uniqueid="61884-143180" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/Cdf1SOnc_400x400.png" data-path="2018/12/Cdf1SOnc_400x400.png" data-width="400" data-height="400" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>10. Marketing Land</strong></h2>
<h3><a href="https://marketingland.com/facebook-to-replace-relevance-score-with-3-new-metrics-in-april-258355">&gt; Facebook to replace relevance score with 3 new metrics in April</a> – By Amy Gesenhues</h3>
<h3><a href="https://marketingland.com/facebook-advertisers-will-not-be-able-to-set-budgets-at-ad-set-level-starting-in-september-256522">&gt; Updated: Prepare to say goodbye to Facebook ad set budgets</a> – By Amy Gesenhues</h3>
<h3><a href="https://marketingland.com/facebook-gives-small-businesses-new-advertising-and-engagement-tools-260517">&gt; Facebook gives small businesses new advertising and engagement tools</a> – By Amy Gesenhues</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="20">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Marketing Land is a well-known publication for covering a wide spectrum of marketing: analytics, social media, mobile marketing, SEO, display, retail, and more.  Founded in 2011, Marketing Land is one of the oldest sites in our list; its parent company, Third Door Media, is even older.</p>
<p>Breaking stories, industry trends, feature announcements and product changes usually make the headlines of Marketing Land, which delivers fresh content every day. Besides, experts across all digital marketing disciplines are regularly featured and share their tips and tactics.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="21">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/MOZz-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="61915-961430" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/MOZz.jpg" data-path="2018/12/MOZz.jpg" data-width="800" data-height="800" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>11. Moz</strong></h2>
<h3><a href="https://moz.com/blog/optimizing-for-searcher-intent-explained-in-7-visuals">&gt; Optimizing for Searcher Intent Explained in 7 Visuals</a> – By Rand Fishkin</h3>
<h3><a href="https://moz.com/blog/one-hour-seo-guide-part-1-seo-strategy">&gt; The One-Hour Guide to SEO: SEO Strategy – Whiteboard Friday</a> – By Rand Fishkin</h3>
<h3><a href="https://moz.com/blog/on-page-seo-2019">&gt; On-Page SEO for 2019 – Whiteboard Friday</a> – By Britney Muller</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="22">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Moz was founded by Rand Fishkin and Gillian Muessig in 2004 – back when it was known as SEOMoz. They two founders believe that there was not enough transparency and knowledge in the SEO world and they wanted that. Enter Moz – a place where information flows freely through its digital marketing articles and anyone who is willing to learn can do so.</p>
<p>Since then, Moz has released many SEO tools, some of which are free. After all this time, Moz remains one of the best places where anyone, beginner or not, can find answers for their SEO questions.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="23">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/12NeilPatel-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63440-129558" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/12NeilPatel.jpg" data-path="2019/07/12NeilPatel.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>12. Neil Patel Digital</strong></h2>
<h3><a href="https://neilpatel.com/blog/how-digital-marketing-will-change/">&gt; How Digital Marketing Will Change in 2019</a> – By Neil Patel</h3>
<h3><a href="https://neilpatel.com/blog/ubersuggest-3-0/">&gt; The Ultimate SEO Tool: Ubersuggest 3.0</a> – By Neil Patel</h3>
<h3><a href="https://neilpatel.com/blog/social-media-trends/">&gt; 17 Charts That Show Where Social Media is Heading</a> – By Neil Patel</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="24">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Neil Patel is possibly the most recognizable face of digital marketing. He is the co-founder of Crazy Egg, an analytics software, and the founder of Kissmetrics, a product that provides insights about website visitors. Neil is also a NY Time best selling author, for his book ‘Hustle’.</p>
<p>Neil’s blog generates more than 3 million visitors per month. He talks mostly about SEO but he’s not shy with content marketing, eCommerce or social media. If you are a beginner digital marketer with a focus on SEO, Neil Patel’s blog is probably a place you already visit. Neil is also very active on YouTube, so if you are more into videos than articles, don’t forget to subscribe to his channel.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="25">
<div class="row single-top-padding no-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/sej-uai-258x258.png" alt="" width="258" height="258" data-uniqueid="61894-640181" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/sej.png" data-path="2018/12/sej.png" data-width="500" data-height="500" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>13. Search Engine Journal</strong></h2>
<h3><a href="https://www.searchenginejournal.com/buzzfeed-content-ideas/303437/">&gt; 5 Freaking Genius Content Ideas You Can Steal from BuzzFeed</a> – By Jessica Foster</h3>
<h3><a href="https://www.searchenginejournal.com/top-3-google-factors/308147/">&gt; Google Shares Top 3 SEO Factors</a> – By Roger Montti</h3>
<h3><a href="https://www.searchenginejournal.com/whatsapp-business/305883/">&gt; Mark Zuckerberg at F8 Conference Announces New eCommerce and Payment Platform</a> – By Roger Montti</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="26">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Despite its name, in Search Engine Journal you are going to find a lot more than SEO topics. SEJ attracts more than 900k visitors per month, who want to learn more about SEO, Paid search, content marketing, and social media.</p>
<p>SEJ features news, interviews and how-to guides from marketing experts around the world and its mission is to make you “work smarter not harder”. Last but not least, SEJ is an excellent place to find digital marketing resources, such as e-books, podcasts and webinars, besides the well-structured digital marketing articles.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="27">
<div class="row single-top-padding no-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2019/07/14SocialMediaExaminer-uai-258x258.jpg" alt="" width="258" height="258" data-uniqueid="63441-173847" data-guid="https://growthrocks.com/wp-content/uploads/2019/07/14SocialMediaExaminer.jpg" data-path="2019/07/14SocialMediaExaminer.jpg" data-width="516" data-height="516" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>14. Social Media Examiner</strong></h2>
<h3><a href="https://www.socialmediaexaminer.com/10-metrics-to-track-analyzing-social-media-marketing/">&gt; 10 Metrics to Track When Analyzing Your Social Media Marketing</a>– By Ashley Ward</h3>
<h3><a href="https://www.socialmediaexaminer.com/how-to-grow-instagram-following-strategic-plan/">&gt; How to Grow Your Instagram Following: A Strategic Plan</a> – By Amanda Bond</h3>
<h3><a href="https://www.socialmediaexaminer.com/is-facebook-organic-marketing-dead-mari-smith/">&gt; Is Facebook Organic Marketing Dead?</a> – By Michael Stelzner</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="28">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Social Media Examiner provides high-quality social media content and is a familiar place-to-be for many social media experts around the globe. In addition to its blog, Social Media Examiner produces podcasts and hosts conferences, as part of their mission “to help you navigate the constantly changing social media jungle.”</p>
<p>Apart from its blog, Social Media Examiner is the host of Social Media Marketing World and one of the biggest US communities which frequently hosts networking events and parties.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="29">
<div class="row limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-3 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode-single-media  text-left">
<div class="single-wrapper">
<div class="tmb tmb-light  tmb-media-first tmb-media-last tmb-content-overlay tmb-no-bg">
<div class="t-inside">
<div class="t-entry-visual">
<div class="t-entry-visual-tc">
<div class="uncode-single-media-wrapper"><img class="async-blurred async-done" src="https://growthrocks.com/wp-content/uploads/2018/12/qOMRQbPk-uai-258x258.jpeg" alt="" width="258" height="258" data-uniqueid="61893-943741" data-guid="https://growthrocks.com/wp-content/uploads/2018/12/qOMRQbPk.jpeg" data-path="2018/12/qOMRQbPk.jpeg" data-width="512" data-height="512" data-singlew="3" data-singleh="" data-crop="" data-fixed="" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pos-top pos-center align_left column_parent col-lg-9 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<h2><strong>15. Social Media Today</strong></h2>
<h3><a href="https://www.socialmediatoday.com/news/facebook-updates-group-invites-removing-ability-to-automatically-add-membe/546374/">&gt; Facebook API Changes Mean You Can No Longer Auto Post Tweets to Facebook</a> – By Andrew Hutchinson</h3>
<h3><a href="https://www.socialmediatoday.com/news/why-is-digital-marketing-so-important-for-business-in-2019-infographic/552160/">&gt; Why is Digital Marketing so Important for Business in 2019? [Infographic]</a> – By Andrew Hutchinson</h3>
<h3><a href="https://www.socialmediatoday.com/news/8-ways-that-your-social-media-content-is-annoying-your-audience/554091/">&gt; 8 Ways Your Social Media Content is Annoying Your Audience</a> – By Nathan Mendenhall</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row row-container" data-parent="true" data-section="30">
<div class="row no-top-padding single-bottom-padding single-h-padding limit-width row-parent" data-imgready="true">
<div class="row-inner">
<div class="pos-top pos-center align_left column_parent col-lg-12 single-internal-gutter">
<div class="uncol style-light">
<div class="uncoltable">
<div class="uncell no-block-padding">
<div class="uncont">
<div class="uncode_text_column">
<p>Like the name gives away, Social Media Today is one of the must-read blogs that social marketing adepts and inepts alike visit more often than they will admit. Social Media Today creates and curates conversations around the world’s most innovative business practices with a clear focus on social media. Marketing, social business, communication, customer experience, content marketing and digital strategy are usually the subjects covered in the many digital marketing articles of the site.</p>
<p>In addition to news updates, Social Media Today offers a space to share, learn, and network with other digital marketing professionals from around the world. It is also an excellent source for webinars, where you can find many on-demand videos to hone your social media marketing skills.</p>
<p>Read More:</p>
<h2 class="post-title"><a href="https://xinicomms.com/marketing-services-in-nigeria/">Influencer Key Goals In A Few Years From Now</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/branding/">Brand Activation – Experiential Marketing Notes</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/the-future-of-printing-in-the-world/">The Future Of Printing In The World</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/experiential-marketing-across-the-world-from-lagos-nigeria/">Experiential Marketing Across The World From Lagos Nigeria</a></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://xinicomms.com/the-digital-movement-in-marketing-for-2019-what-next/">The Digital Movement In Marketing For 2019 &#8211; What Next?</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>Influencer Key Goals In A Few Years From Now</title>
		<link>https://xinicomms.com/marketing-services-in-nigeria/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=marketing-services-in-nigeria</link>
				<pubDate>Wed, 07 Aug 2019 14:18:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Influencer Marketing]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4459</guid>
				<description><![CDATA[<p>Marketing keeps evolving with the most easy way to carry out projects while ensuring that the returns on investment is worth it. Today we are considering what some 5 major Influencer marketing companies for us to share with you our keen readers. Case 1: Global Influencer Marketing 2019 (What to Know About Spending, Stories, Fraud [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/marketing-services-in-nigeria/">Influencer Key Goals In A Few Years From Now</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>Marketing keeps evolving with the most easy way to carry out projects while ensuring that the returns on investment is worth it.</p>
<p>Today we are considering what some 5 major Influencer marketing companies for us to share with you our keen readers.</p>
<ul>
<li><strong>Case 1:</strong> <strong>Global Influencer Marketing 2019 </strong>(What to Know About Spending, Stories, Fraud and Microinfluencers)</li>
</ul>
<p><a href="http://emarketer.com"><img class="alignnone wp-image-4460 size-full" src="https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa.jpg" alt="Influencers Marketing Nigeria, Africa" width="1747" height="388" srcset="https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa.jpg 1747w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-300x67.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-768x171.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-1024x227.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-685x152.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-570x127.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-490x109.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-370x82.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-270x60.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/08/Influencers-Marketing-In-Lagos-Nigeria-Africa-210x47.jpg 210w" sizes="(max-width: 1747px) 100vw, 1747px" /></a></p>
<p>Lets see what e Marketer is got to say on Influencer Marketing as it becomes a very rampart world in the digital age.</p>
<div>
<div class="cb-widget-tabs">
<div id="js-page-tabs--item-page-report" class="cb-widget-tabs_item js-page-tabs--item">
<section class="cb-widget-row">
<div class="cb-widget-row_content">
<div class="cb-widget spec_text_widget">
<p class="-intro-text">Influencer marketing is a part of marketing plans for businesses around the world, especially in industries such as fashion, beauty, retail and entertainment. But high-profile scandals like the Fyre Festival show that this industry that sprang up to help brands forge authentic connections to consumers is facing increasing scrutiny of its own trustworthiness.</p>
</div>
</div>
<div class="cb-widget-row_aside"></div>
</section>
<section class="cb-widget-row">
<div class="cb-widget-row_content">
<figure class="cb-widget cb-widget-chart spec_chart_widget">
<div class="cb-widget-chart_inner-wrapper"><img class="cb-widget-chart_image-front" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" alt="How Has the Advertising Media Mix Changed for Companies Worldwide with the Increased Connectivity of Their Audience? (% of respondents, Sep 2018)" /><img class="cb-widget-chart_placeholder" width="470" height="574" /></div>
</figure>
</div>
<div class="cb-widget-row_aside"></div>
</section>
<section class="cb-widget-row">
<div class="cb-widget-row_content">
<div class="cb-widget spec_text_widget">
<ul>
<li><strong>How much should marketers be spending on influencer marketing?</strong>The average share of budgets is only about 10%, but marketers are increasing their spending as their reliance on the tactic grows. In some Asian countries, such as China, the practice is even more important than in other parts of the world.</li>
<li><strong>Why are marketers gravitating toward Instagram Stories?</strong> Influencers like Stories because they can be more candid and real than in feed posts, and because they can disappear. Stories are also helping to bring influencer marketing closer to the purchase decision, because they allow outbound links.</li>
<li><strong>How big a problem is fraud in influencer marketing?</strong> Fraud is on the rise, and issues ranging from fake engagement to nondisclosure are still far from resolved. Some marketers such as Unilever have pledged to no longer work with influencers whose metrics they cannot trust.</li>
<li><strong>Why the spike in interest in microinfluencers?</strong> A growing number of marketers are taking a back-to-basics approach, scaling back their use of celebrities and megacreators for so-called “micro-” and “nano-” influencers who have smaller audiences but may actually use a product and can speak authentically about it.</li>
</ul>
<p><strong>WHAT’S IN THIS REPORT?</strong> This report pinpoints the ways marketers are using influencer marketing successfully and explores how they are getting past some of the vexing issues that threaten to hold the tactic back.</p>
<p><strong>KEY STAT: </strong>A worldwide survey of CMOs found that 30.5% are increasing their focus on influencers as part of the advertising media mix.</p>
</div>
</div>
</section>
</div>
<div id="js-page-tabs--item-page-charts" class="cb-widget-tabs_item js-page-tabs--item -hidden">
<section class="cb-widget-row">
<div class="cb-widget-row_content">
<div class="cb-widget cb-widget-gallery2 -full_width js-gallery2">
<div class="cb-widget-gallery2_control-v2-wrapper">Key Cases To Analyze Globally With An Integrated Sector Search For Nigerian Brand With High Consideration Of Influencer Marketing On All Platforms.</div>
<div class="cb-widget-gallery2_thumbnails js-gallery2--carousel flickity-enabled is-draggable" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider"><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail is-selected is-nav-selected" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="true"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="574" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="456" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245185" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="441" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244052" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="406" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243035" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="344" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/239205" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="347" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244875" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="375" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243034" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="280" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244450" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="352" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/240097" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="358" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244995" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="475" height="446" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245097" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="550" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244453" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="450" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244790" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="258" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244746" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="558" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244449" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="474" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245135" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="419" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245136" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="574" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244448" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="342" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245077" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="314" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242948" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="371" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243668" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="427" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/237535" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="365" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244445" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="528" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244446" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="471" height="342" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245040" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="471" height="328" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245096" /></button><button class="cb-widget-gallery2_thumbnail js-gallery2--thumbnail" data-analytics="Report-Carousel-Thumbnail-Click" aria-selected="false"><img class="cb-widget-gallery2_thumbnail-image" width="470" height="382" /><br />
<img class="cb-widget-gallery2_thumbnail-image -front" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243033" /></button></div>
</div>
</div>
<div class="cb-widget-gallery2_toggle js-gallery2--toggle-container"><button class="cb-widget-gallery2_toggle-message -expand js-gallery2--toggle-expand">expand</button></div>
</div>
</div>
</section>
</div>
</div>
<div class="cb-widget cb-widget-popup -compact-image js-popup" data-popup-id="main">
<p>&nbsp;</p>
<div class="cb-widget-popup_slideInfoWrapper">
<div class="cb-widget-popup_slideInfo">
<div class="cb-widget-popup_title spec_media_gallery_item_title"></div>
<div class="cb-widget-popup_text"></div>
</div>
<div class="cb-widget-popup_slideControls">
<div class="cb-widget-popup_downloadWrapper"></div>
</div>
</div>
<div class="cb-widget-popup_slider js-popup--slider flickity-enabled" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider">
<div class="cb-widget-popup_slide cell-139937418 is-selected" aria-selected="true">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" data-analytics="Report-Media-Gallery-Image-Click" /></div>
</div>
</div>
<div class="cb-widget-popup_slide cell-312455021" aria-selected="false">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image" data-analytics="Report-Media-Gallery-Image-Click" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245096" /></div>
</div>
</div>
<div class="cb-widget-popup_slide cell-977090803" aria-selected="false">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image" data-analytics="Report-Media-Gallery-Image-Click" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243033" /></div>
</div>
</div>
</div>
</div>
</div>
<div class="cb-widget-popup_thumbnails js-popup--carousel flickity-enabled is-draggable" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider"><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail is-selected is-nav-selected" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="true"><img class="cb-widget-popup_thumbnailImage" width="470" height="574" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="456" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245185" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="574" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="362" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243817" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="441" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244052" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="406" /><br />
</button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="344" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/239205" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="347" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244875" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="375" /><br />
</button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="280" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244450" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="352" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/240097" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="358" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244995" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="475" height="446" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245097" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="550" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244453" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="450" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244790" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="258" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244746" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="558" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244449" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="474" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245135" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="419" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245136" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="574" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244448" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="342" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245077" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="314" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242948" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="371" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243668" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="427" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/237535" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="365" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244445" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="528" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244446" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="471" height="342" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245040" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="471" height="328" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245096" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="382" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243033" /></button></div>
</div>
</div>
</div>
<div class="cb-widget cb-widget-popup -compact-image js-popup" data-popup-id="LHCL2BUIR0">
<p>&nbsp;</p>
<div class="cb-widget-popup_slider js-popup--slider flickity-enabled" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider">
<div class="cb-widget-popup_slide cell-SilyO3TP1r" aria-selected="false">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cb-widget cb-widget-popup -compact-image js-popup" data-popup-id="37xC7KKiwD">
<div class="cb-widget-popup_slideInfoWrapper">
<div class="cb-widget-popup_slideControls">
<div class="cb-widget-popup_downloadWrapper"></div>
</div>
</div>
<div class="cb-widget-popup_slider js-popup--slider flickity-enabled" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider">
<div class="cb-widget-popup_slide cell-ADwuOK6HJH is-selected" aria-selected="true">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" data-analytics="Report-Media-Gallery-Image-Click" /></div>
</div>
</div>
<div class="cb-widget-popup_slide cell-rNc6jEDcNP" aria-selected="false">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image" data-analytics="Report-Media-Gallery-Image-Click" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244445" /></div>
</div>
</div>
<div class="cb-widget-popup_slide cell-TaaPmGA59D" aria-selected="false">
<div class="cb-widget-popup_flexContainer">
<div class="cb-widget-popup_imageWrapper spec_media_gallery_item_image"><img class="cb-widget-popup_image" data-analytics="Report-Media-Gallery-Image-Click" data-flickity-lazyload="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243033" /></div>
</div>
</div>
</div>
</div>
</div>
<div class="cb-widget-popup_thumbnails js-popup--carousel flickity-enabled is-draggable" tabindex="0">
<div class="flickity-viewport">
<div class="flickity-slider"><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail is-selected is-nav-selected" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="true"><img class="cb-widget-popup_thumbnailImage" width="470" height="574" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242708" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="456" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245185" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="441" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244052" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="406" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243035" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="344" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/239205" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="347" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244875" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="375" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243034" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="280" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244450" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="352" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/240097" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="358" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244995" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="475" height="446" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245097" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="550" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244453" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="450" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244790" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="258" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244746" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="558" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244449" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="474" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245135" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="419" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245136" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="574" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244448" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="342" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245077" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="314" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/242948" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="371" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243668" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="427" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/237535" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="365" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244445" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="528" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/244446" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="471" height="342" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245040" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="471" height="328" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/245096" /></button><button class="cb-widget-popup_thumbnail spec_media_gallery_item_thumbnail" data-analytics="Report-Media-Gallery-Thumbnail-Click" aria-selected="false"><img class="cb-widget-popup_thumbnailImage" width="470" height="382" /><br />
<img class="cb-widget-popup_thumbnailImage -front flickity-lazyloaded" src="https://contentstorage-nax1.emarketer.com/8fab4ee20d00f2d3247417d4539a79c4/243033" /></button></div>
</div>
</div>
</div>
</div>
<div class="fadeout"></div>
<div>Thanks to <a href="https://www.emarketer.com/">emarketer.com</a> For this detailed analysis.</div>
<div></div>
<div>
<ul>
<li>
<h2><strong>Case 2:The Global State of Influencer Marketing in 2019</strong></h2>
</li>
</ul>
</div>
<div><a href="https://www.talkwalker.com/"><img class="alignnone wp-image-4461 size-full" src="https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks.jpg" alt="The Global State Of Influencer Marketing" width="1753" height="762" srcset="https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks.jpg 1753w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-300x130.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-768x334.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-1024x445.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-685x298.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-570x248.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-490x213.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-370x161.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-270x117.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/08/Influencer-Marketing-Talks-210x91.jpg 210w" sizes="(max-width: 1753px) 100vw, 1753px" /></a></div>
<div></div>
<div>
<p>Influencer marketing is a buzzword included in most social media trends articles written over the past few years, but what is the reality on the ground?</p>
<p dir="ltr">We&#8217;re pleased to present our Global State of Influencer Marketing Report, based on the responses of over 800 marketing and PR professionals from brands and agencies.</p>
<p><strong>Top 3 figures</strong></p>
<ul class="tw-list">
<li>69% of respondents ranked influencer marketing as a key strategic priority</li>
<li>Over 71% of IM professionals currently work with 50 influencers or less</li>
<li>61% will increase the amount of money they invest in influencer marketing in 2019</li>
</ul>
</div>
<p>&nbsp;</p>
<ul>
<li>
<h2><strong>Case 3: How To Stay Competitive In The Growing World Of Influencer Marketing</strong></h2>
</li>
</ul>
<div>
<p><img src="https://www.convinceandconvert.com/wp-content/uploads/2018/05/How-to-Stay-Competitive-in-the-Growing-World-of-Influencer-Marketing.jpg" alt="How to Stay Competitive in the Growing World of Influencer Marketing" /></p>
<p>Not so long ago, internet marketing was all about affiliates. It was one of the more effective ways to reach a mass audience, and brands could compete with one another through an affiliate publisher, or web portal, to increase exposure and drive sales.</p>
<p>Now, ordinary individuals can gain massive reach through a single social channel. <strong>Brands that once relied on affiliates to promote their products online are turning to influencers</strong> to lend more legitimacy to their wares.</p>
<p>Because of my background in affiliate marketing, I can say with confidence that influencer marketing is the new wave of affiliate marketing. The most engaging of influencers leverage the newest, most exciting technologies to provide a better experience for their audiences.</p>
<div class="ad_content">
<div class="adplugg-tag adzone" data-adplugg-zone="blog_single_content_leaderboard" data-adplugg-regid="0" data-adplugg-processed="true"></div>
</div>
<p><span class="bctt-click-to-tweet"><span class="bctt-ctt-text"><a href="https://twitter.com/intent/tweet?url=https://www.convinceandconvert.com/?p=150044&amp;text=Brands%20that%20once%20relied%20on%20affiliates%20to%20promote%20their%20products%20online%20are%20turning%20to%20influencers.&amp;via=convince&amp;related=convince" target="_blank" rel="noopener noreferrer">Brands that once relied on affiliates to promote their products online are turning to influencers.</a></span><a class="bctt-ctt-btn" href="https://twitter.com/intent/tweet?url=https://www.convinceandconvert.com/?p=150044&amp;text=Brands%20that%20once%20relied%20on%20affiliates%20to%20promote%20their%20products%20online%20are%20turning%20to%20influencers.&amp;via=convince&amp;related=convince" target="_blank" rel="noopener noreferrer">CLICK TO TWEET</a></span></p>
<h3>The Future of Influencer Marketing</h3>
<p>It’s easy to see what I’m talking about just by looking at trends. Consumers are “cutting the cord” from cable television, instead choosing to create their own viewing experiences from their phones, tablets, and computers. Those still tethered to the tube now have the ability to skip what they deem unnecessary and consume digital content whenever they want.</p>
<p><strong>Cord-cutting—and a growing skepticism about what brands say about themselves—has bolstered the impact of user-generated content</strong>, making celebrities (or microcelebrities) out of people with knacks for taking selfies and videos of themselves.</p>
<p>The influencer marketing space will <a href="https://www.convinceandconvert.com/influencer-marketing/influencer-marketing-is-changing/" target="_blank" rel="noopener noreferrer">keep evolving</a>, especially as people continue consuming digital content. Greater sophistication will emerge regarding the ways that brands customize their messaging and measure the impact of their marketing efforts—particularly through this new breed of media personality.</p>
<p><img class="aligncenter size-full wp-image-150557" src="https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting.jpg" sizes="(max-width: 1600px) 100vw, 1600px" srcset="https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting.jpg 1600w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting-300x150.jpg 300w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting-768x384.jpg 768w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting-1024x512.jpg 1024w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting-1000x500.jpg 1000w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/Cable-subscription-cord-cutting-100x50.jpg 100w" alt="" width="1600" height="800" /></p>
<h3>Platforms of Influence</h3>
<p>Curated newsletters are growing in popularity. If you follow business influencers on platforms like Twitter or LinkedIn, you will most likely find them promoting an article in a newsletter. And if you like what you read, you’ll keep going back. Eventually, the authors of that content will become trusted sources of information, and what they say will have some sway over your thoughts. And when they start promoting a product or service, it just might become a viable purchasing decision.</p>
<p>Newsletters and blog posts are nothing new, but what I’m getting at is <strong>the importance of thinking outside the box to reach your target audience</strong>. It’s becoming increasingly clear that traditional marketing methods are no longer enough to increase brand awareness. You need to lean on the people who have influence with your ideal customers.</p>
<h3>3 Tips to Influence Others</h3>
<p>How do you use these influencers to your advantage? Keep these three strategies in mind.</p>
<h4>1. Be selective in your choice of influencers.</h4>
<p>Influencer marketing is like any other form of marketing—at least when it comes to the basics. It’s essential to understand your audience members before you can reach them, let alone provide them with anything of value.</p>
<p>Segment your target audience into personas based on their likes, interests, and hobbies. Then, <strong>find influencers who already appeal to those personas</strong>, rather than selecting influencers solely for their reach.</p>
<p>Athletic shoe brand ASICS successfully targeted a variety of personas by harnessing influencers at different levels of expertise. <a href="https://www.ispo.com/en/markets/how-influencer-marketing-works-sports-and-fitness-brands" target="_blank" rel="noopener noreferrer">To promote FrontRunners</a>, its global health and fitness initiative, it sourced content from amateur, semi-professional, and professional runners. These influencers created profiles and blog pieces the brand used to target a wide range of readers, from those interested in distance running to those just in the market for a shoe.</p>
<p>Relevance is, after all, the most important element in your relationship with any influencer. Reaching the right people requires choosing an influencer who shares the same target audience as your brand. And with <a href="http://www.nielsen.com/us/en/press-room/2015/recommendations-from-friends-remain-most-credible-form-of-advertising.html" target="_blank" rel="noopener noreferrer">83 percent of consumers</a> trusting friend and family recommendations, it’s easy to tap a source that has authority over purchase decisions. Followers of influencers often regard their videos, photos, and other posts as endorsements from a trusted friend.</p>
<p><a href="https://www.convinceandconvert.com/"><img class="aligncenter wp-image-150560 size-full" src="https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_.jpg" sizes="(max-width: 1600px) 100vw, 1600px" srcset="https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_.jpg 1600w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_-300x150.jpg 300w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_-768x384.jpg 768w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_-1024x512.jpg 1024w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_-1000x500.jpg 1000w, https://www.convinceandconvert.com/wp-content/uploads/2018/05/83-percent-of-consumers-trust-friends-and-family_-100x50.jpg 100w" alt="83 percent of consumers trust friends and family" width="1600" height="800" /></a></p>
<h4>2. Go niche with your influence.</h4>
<p>Plenty of influencers reach millions of people, but partnering with them sometimes provides the same results as other “mass” marketing efforts: a big bang for few bucks—at least on the back end.</p>
<p>Instead, <strong>try looking for influencers or channels with smaller followings</strong>. They often offer more engaged and devoted fan bases. They will also know their audiences well and communicate in ways that will generate responses.</p>
<p>Sperry embraced this method when it elected to go smaller with a 2016 campaign that <a href="https://blog.hubspot.com/marketing/examples-of-influencer-marketing-campaigns" target="_blank" rel="noopener noreferrer">partnered with more than 100 Instagram micro-influencers</a>. The boat shoe brand sought loyalists who were already sharing primo photos of the shoes via their personal Instagram accounts and asked the customers to create similarly alluring photos for Sperry’s own account. The approach had <a href="https://dealspotr.com/article/influencer-marketing-case-studies" target="_blank" rel="noopener noreferrer">less to do with ROI</a> and more to do with widening the brand’s social imprint, which can produce financial dividends in due time. Sperry saw what possibilities could arise from investing in niche influencers, like what Amazon did when it invested in the live-streaming video platform Twitch.</p>
<p>Twitch viewers watch other people play video games. The platform currently has <a href="https://www.econsultancy.com/blog/69392-amazon-turns-twitch-into-an-influencer-sales-platform" target="_blank" rel="noopener noreferrer">more than 100 million monthly visitors</a>, with nearly half clocking more than 20 hours of viewing each week. Amazon saw so much potential in Twitch’s ability to drive game sales that it bought the service for <a href="http://www.businessinsider.com/amazon-buys-twitch-2014-8" target="_blank" rel="noopener noreferrer">nearly $1 billion</a> in 2014. Influencers on the channel feature products they like, earning commissions on any resulting sales. Twitch has proved an easy way to tap a big potential audience.</p>
<h4>3. Create the right mix of content.</h4>
<p>Think of <a href="https://xinicomms.com/influencer-marketing-2/">influencer marketing agency in Lagos</a> like you would <a href="https://xinicomms.com/influencer-marketing-2/">content marketing</a>: It provides just as many types of content, and each content type connects you to a different portion of your audience.</p>
<p>In other words, <strong>don’t rely solely on short-form content platforms</strong> like Snapchat or Instagram. Although these platforms have viewer influence, depending exclusively on them means you might miss out on opportunities that only long-form content can provide. Instead, consider using sites like <a href="https://medium.com/" target="_blank" rel="noopener noreferrer">Medium</a> to strike the right balance with your mix of content. Unlike Snapchat or Instagram, Medium provides a channel for your audience to dig deeper into topics.</p>
<p>You should always be curating marketing collateral, and any good collection has more than one form of content. The real trick is knowing when to use a picture, video, article, or even email to further the conversation.</p>
<p>Influencer marketing is quickly becoming <a href="https://www.convinceandconvert.com/influencer-marketing/best-influencer-marketing-studies-of-2018/" target="_blank" rel="noopener noreferrer">the most powerful weapon</a> in a marketer’s arsenal of strategies. Using it effectively comes with a learning curve, and it can take time, energy, and a whole lot of research to find the right influencer to promote your brand. But once you do, it can be a match made in heaven for your bottom line.</p>
</div>
<p>&nbsp;</p>
<ul>
<li>
<h2><strong>Case 4: How To Stay Competitive In The Growing World Of Influencer Marketing</strong></h2>
</li>
</ul>
<div>
<p><img class="alignnone wp-image-4462 size-full" src="https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce.jpg" alt="" width="1730" height="720" srcset="https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce.jpg 1730w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-300x125.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-768x320.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-1024x426.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-685x285.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-570x237.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-490x204.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-370x154.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-270x112.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/08/Marketing-In-Lagos-Through-Influnce-210x87.jpg 210w" sizes="(max-width: 1730px) 100vw, 1730px" /></p>
<div id="panel-54844" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>As social media becomes a more integrated part of our lives, influencer marketinghas exploded. People are turning to their favorite Instagram models, Twitter personalities and YouTube stars for advice and recommendations on purchasing decisions.</p>
<p>These influencers are trusted by millions of consumers, and marketers are paying attention. It turns out <a href="https://www.emarketer.com/Article/Marketers-Boost-Influencer-Budgets-2017/1014845" target="_blank" rel="noopener noreferrer">86%</a> of them used influencer marketing since last year, and budgets for influencer marketing are skyrocketing.</p>
<p><a href="https://xinicomms.com/social-media-management-2/" target="_blank" rel="noopener noreferrer">Social media</a> has given normal people an opportunity to build their own brand through stimulating content and engagement. These new influencers are more relatable than traditional celebrities. Since more people are joining social media networks every day, companies have begun to realize they can leverage these platforms for marketing.</p>
<p>Interest in influencer marketing has only raised, which means a lot of research has been conducted which has produced interesting statistics. So let&#8217;s take a look at some of the most eye-popping results of these studies. Here are 20 influencer marketing stats that will surprise you.</p>
</div>
<h2 id="panel-55331" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">1) 70% of Teens Trust Influencers More than Traditional Celebrities</h2>
<div id="panel-54846" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>It&#8217;s extremely difficult for brands to build the same level of trust influencers possess, but thanks to influencer marketing that trust is transmitted to your brand. So much so that <a href="https://www.thinkwithgoogle.com/consumer-insights/youtube-stars-influence/" target="_blank" rel="noopener noreferrer">4 in 10</a> millennial subscribers say their favorite influencer understand them better than their friends</p>
<p>Another effect of influencer marketing is that brands don&#8217;t have to waste resources promoting themselves, and instead use influencers to speak on their behalf and deliver the message they want people to here and trust.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55334" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">2) 86% of Women Use Social Media for Purchasing Advice</h2>
<div id="panel-55344" class="e_image_single e_image_single_align_center o_img_default "><img src="https://uploads.digitalmarketinginstitute.com/general/img_womeninbusiness.jpg?mtime=1467387279" alt="86% of Women Use Social Media for Purchasing Advice" /></div>
<div id="panel-55335" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>This statistic should be important to any brand that either has women as their primary target audience or within their scope of ideal customers.</p>
<p>It seems if you want to reach more women and get them to buy your product or service, you need to be present on social media and aware of the influencers that they are interested in. And this behavior is growing as <a href="https://www.alistdaily.com/social/study-why-women-turn-to-social-media-for-purchasing-decisions/" target="_blank" rel="noopener noreferrer">45% of women</a> claim to be more active on social media that they were just 2 years ago.</p>
<p>When it comes to influencer marketing, over <a href="https://www.adweek.com/digital/53-of-women-made-purchases-due-to-influencer-posts-survey/" target="_blank" rel="noopener noreferrer">half</a> of women made purchases due to influencer posts with Facebook and Instagram being the preferred platforms. The key to engaging this cohort through influencers is to be genuine and inspirational.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55336" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">3) 49% of Consumers Depend on Influencer Recommendations</h2>
<div id="panel-55337" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>This statistic demonstrates the growing importance of social media influences for brands to connect with their audiences. Not only do 49% of consumers depend on influencer recommendations but <a href="http://www.ion.co/twitter-has-released-a-report-showing-consumers-seek-product-recommendations-from-influencers-almost-as-much-as-they-do-from-friends" target="_blank" rel="noopener noreferrer">40%</a> had purchased something after seeing it on Twitter, YouTube or Instagram.</p>
<p>If consumers feel confident about an influencer&#8217;s recommendation, they are more likely to make a purchase. Brands are able to piggyback on the trust of influencers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55332" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">4) 6 in 10 Teens Follow Advice From Influencers Over Celebrities</h2>
<div id="panel-55333" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>The word of a celebrity isn&#8217;t as valuable as it used to be. Not only do customers have a hard time trusting brands, but also traditional celebrities seem to have lost the influence they once had.</p>
<p>Influencers have the power to forge strong ties with fans and experience a more engaged audience gaining <a href="https://www.thinkwithgoogle.com/consumer-insights/youtube-stars-influence/" target="_blank" rel="noopener noreferrer">3 times</a> as many views, twice as many actions and 12 times as many comments compared to videos from traditional celebrities.</p>
<p>It seems these days’ consumers trust social media influencers and their peers above anybody else. Power has shifted to social media influencers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55338" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">5) Influencer Marketing Campaigns Earn $6.50 for Every Dollar Spent</h2>
<div id="panel-55339" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>With 59% of marketers planning to increase their influencer marketing budgets, this area of marketing is becoming the <a href="https://blog.tomoson.com/influencer-marketing-study/" target="_blank" rel="noopener noreferrer">fastest growing channel</a> for brands beating organic search, paid search and email marketing.</p>
<p>According to a Tomson study, businesses earn $6.50 for each dollar spent on influencers with the top 13% earning $20 or even more. That&#8217;s a significant return on investment considering that over half of marketers also consider the customers they acquire through this route as better prospects.</p>
<p>In terms fo influencer channels, blogs and Facebook are cited as the most effective platforms.</p>
</div>
<div class="content-separator-element"></div>
<div id="panel-55346" class="e_image_single e_image_single_align_center o_img_default "><a href="https://digitalmarketinginstitute.com/membership" target="_blank" rel="noopener noreferrer"><img src="https://uploads.digitalmarketinginstitute.com/general/Membership_Blog_Inline_CTA.gif?mtime=1532424859" alt="Stay on top of digital trends and development with our membership platform. " /></a></div>
<div class="content-separator-element"></div>
<h2 id="panel-55348" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">6) Influencer Marketing Is the Fastest-Growing Online Customer-Acquisition Method</h2>
<div id="panel-54848" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>More brands are hopping on the influencer marketing train. It&#8217;s becoming more important than ever to build relationships with influencers who resonate with your brand and to create campaigns, which are aligned with the values of an influencer&#8217;s followers.</p>
<p>In addition, <a href="https://blog.tomoson.com/influencer-marketing-study/" target="_blank" rel="noopener noreferrer">22% of marketers</a> say influencer marketing is the most cost-effective method of obtaining new customers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55349" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">7) 57% of Fashion and Beauty Companies Engage in Influencer Marketing</h2>
<div id="panel-54847" class="e_image_single e_image_single_align_center o_img_default "><img src="https://uploads.digitalmarketinginstitute.com/general/Use-Influencer-Marketing-to-Pump-up-Your-Content-Strategy.jpg?mtime=1507321121" alt="57% of Fashion and Beauty Companies Engage in Influencer Marketing" /></div>
<div id="panel-55350" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>Fashion and beauty are industries that rely heavily on influencer marketing as organic growth for brands has become more challenging without advertising and amplification.</p>
<p>In this sector, <a href="https://www.ion.co/beauty-and-fashion-brands-need-influencers-to-succeed-on-youtube" target="_blank" rel="noopener noreferrer"> 57%</a> of companies now use influencers as part of their marketing mix while 21% are planning to add this to their strategy in the coming year.</p>
<p>Many brands now use influencers to great success such as Lush using <a href="https://www.youtube.com/user/grav3yardgirl" target="_blank" rel="noopener noreferrer">Grav3yardgirl</a> and <a href="https://www.youtube.com/user/nguerriero19" target="_blank" rel="noopener noreferrer"> Nicole Guerriero</a> gaining thousands of views on YouTube. However, while many fashion and beauty brands are keen on using influencers, many want to ensure that a brand affinity exists in order to drive success.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55351" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">8) Major Brands Plan to Increase Spend on Influencer Marketing</h2>
<div id="panel-55354" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>More brands and marketers are coming to realize the incredible results that influence marketing can produce. This impact is resulting in an increase in spend with <a href="https://influencermarketinghub.com/the-rise-of-influencer-marketing/" target="_blank" rel="noopener noreferrer"> 67%</a> of marketers planning to increase their budgets in the next 12 months particularly on Instagram.</p>
<p>Not only is spend increasing to help boost brand awareness, reach new audiences and improve brand advocacy, but it&#8217;s fast becoming the <a href="https://www.marketingweek.com/2018/07/20/brands-plan-to-increase-spend-on-influencer-marketing-despite-concerns-over-fraud/" target="_blank" rel="noopener noreferrer">key channel </a>for many marketers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55353" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">9) The Influencer Marketing Industry is Expected to Hit $10bn by 2020</h2>
<div id="panel-55352" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>As an industry, influencer marketing has expanded exponentially over the past two years. Worth just $2 billion in 2017, the industry is set to reach <a href="https://www.adweek.com/digital/giordano-contestabile-activate-by-bloglovin-guest-post-influencer-marketing-in-2018/" target="_blank" rel="noopener noreferrer"> $10 billion by 2020 </a>as the industry witnesses more growth and becomes a more effective marketplace.</p>
<p>This growth means more widespread use in marketing and will require marketers to evolve strategies in the way campaigns are measured, create analytics to scale campaigns and look at how to manage relationships between brands and influencers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55355" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">10) 74% of People Trust Social Networks to Guide Purchasing Decisions</h2>
<div id="panel-55393" class="e_image_single e_image_single_align_center o_img_default "><img src="https://uploads.digitalmarketinginstitute.com/general/6waysvideosocial.jpg?mtime=1495800563" alt="74% of People Trust Social Networks to Guide Purchasing Decisions" /></div>
<div id="panel-55356" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>About <a href="https://socialmediaweek.org/blog/2017/05/social-media-influencing-purchase-decisions/" target="_blank" rel="noopener noreferrer"> three-quarters</a> of consumers trust opinions they find on social media, including those from friends, families, and influencers, to help them make the right decision about buying a product or service.</p>
<p>This creates huge opportunities for marketers in the promotion of products (sponsored or not) to reach new audiences and influence key cohorts such as millennials and Gen Z.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55359" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">11. Influencer Marketing has Surpassed Print Marketing</h2>
<div id="panel-55360" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>What this means is brands are undergoing a transition in the ways they spend their marketing budgets. Expensive and inefficient ad buys, such as those found in newspapers and magazines, are giving way to influencer marketing.</p>
<p>The return on investment in influencer marketing is far outpacing any traditional medium.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55362" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">12. 40% of Customers Use Ad-Blocking Technology</h2>
<div id="panel-55363" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>More and more internet users are removing traditional ads from their online experience. In the U.S. ad-blocking usage is <a href="https://marketingland.com/survey-shows-us-ad-blocking-usage-40-percent-laptops-15-percent-mobile-216324" target="_blank" rel="noopener noreferrer">40%</a> on laptops and 15% on mobile as consumers are tired of being hammered with pop-ups and banners.</p>
<p>But influencers are now filling the gap. People aren&#8217;t blocking videos from their favorite social media celebrities; in fact, they&#8217;re eating up every word they say. Advertising power is shifting to real people and influencers.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55365" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">13. Marketers spend $25,000-$50,000 on Influencer Marketing Campaigns</h2>
<div id="panel-55366" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>Spending on influencers has gone up over the past few years, and it&#8217;s only going to increase.</p>
<p>Many budgets for influencer marketing are on the rise with marketers expected to invest an average of<a href="https://medium.com/crobox/under-the-influence-the-power-of-social-media-influencers-5192571083c3" target="_blank" rel="noopener noreferrer"> $25,000-$50,000</a> in multifaceted campaigns, which is in line with many external marketing budgets of small-to-medium sized companies.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55367" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">14) 40% of Twitter Users Made a Purchase Based on a Tweet</h2>
<div id="panel-54851" class="e_image_single e_image_single_align_center o_img_default "><img src="https://uploads.digitalmarketinginstitute.com/general/blog_header_twitter_digitalselling.jpg?mtime=1456854186" alt=" 40% of Twitter Users Made a Purchase Based on a Tweet" /></div>
<div id="panel-55368" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>It seems Twitter influencers do, as a matter of fact, have the ability to impact the purchasing decisions of followers. On the platform, influencers are now rivaling friends in terms of building trust with <a href="https://blog.twitter.com/marketing/en_us/a/2016/new-research-the-value-of-influencers-on-twitter.html" target="_blank" rel="noopener noreferrer">49%</a> of Twitter users saying they relied on influencers compared to 56% listening to friends.</p>
<p>Engaging in marketing campaigns with influencers over Twitter clearly has the potential to drive up sales for goods and services.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55369" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">15) 67% of Marketers Promote Content With the Help of Influencers</h2>
<div id="panel-55370" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>We already mentioned 73% of marketers have a budget set aside for influencer marketing, but as of right now just <a href="https://www.emarketer.com/Article/Marketers-Pair-Up-with-Influencersand-Works/1012709" target="_blank" rel="noopener noreferrer">67%</a> are actively engaging with and have a relationship with influencers. They&#8217;re getting ahead of the curve and striking marketing deals to borrow their trust.</p>
<p>Now is the time to jump in and get involved in influencer marketing. It&#8217;s time to do your research and find influencers who might have the trust and dedication of your target audience.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55373" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">16) Facebook Is the Most Influential Social Media Network</h2>
<div id="panel-55374" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>With about<a href="http://www.pewinternet.org/2016/11/11/social-media-update-2016/pi_2016-11-11_social-media-update_0-01/" target="_blank" rel="noopener noreferrer"> two billion</a> monthly users across the world, Facebook is the most influential social media channel with 19% of purchasing decisions being influenced by the platform.</p>
<p>Other social media networks are catching up to the giant, but Facebook remains on top. It&#8217;s important to stay active on Facebook and engage with influencers for marketing purposes.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55376" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">17) YouTube Is Hot on Facebook&#8217;s Heels</h2>
<div id="panel-55395" class="e_image_single e_image_single_align_center o_img_default "><img src="https://uploads.digitalmarketinginstitute.com/general/blog_youtubeSEO_alt02.jpg?mtime=1496763630" alt="YouTube Is Hot on Facebook's Heels" /></div>
<div id="panel-55377" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>While Facebook is still the alpha dog, YouTube is right behind with <a href="https://medium.com/@shane_barker/75-influencer-marketing-statistics-that-will-surprise-you-in-2018-b11c39a92b36" target="_blank" rel="noopener noreferrer">18%</a> marketing influence. The platform has made celebrities and influencers of regular people, and fame is open to all age groups and demographics.</p>
<p>There&#8217;s something for everybody on YouTube, and marketers are taking notice by putting more money into influencer marketing on the platform.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55379" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">18) 60% of Consumers Have Been Influenced by Social Media or Blog While Shopping at a Store</h2>
<div id="panel-55380" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>This changes the meaning of comparison shopping. According to <a href="https://www.comparehare.co.uk/non-celebrity-influencers-10-times-more-likely-to-drive-in-store-purchases/" target="_blank" rel="noopener noreferrer">research</a>, 3% of consumers would consider buying a product in-store if promoted by a celebrity compared to 60% for an influencer.</p>
<p>Not only is the influence greater, but over half of customers are consulting blogs and social media on their mobiles prior to shopping highlighting the importance of easy to find information and posts (social and blogs) to reveal a product&#8217;s reputation.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55382" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">19) Purchase Intent Increased by 5.2x by Influencers on Twitter</h2>
<div id="panel-55383" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>Part of influencer marketing research means discovering which social media networks are most suitable for promoting your brand and where your target audience can be found.</p>
<p>According to Twitter influencers created a<a href="https://blog.twitter.com/marketing/en_us/a/2016/new-research-the-value-of-influencers-on-twitter.html" target="_blank" rel="noopener noreferrer"> 5.2x increase</a> in purchase intent when users were exposed to brand and influencer tweets compared to 2.7x when just shown brand tweets.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-55384" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">20) 71% of Marketers Believe Influencer Partnerships are Good for Business</h2>
<div id="panel-55385" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>Influencer marketing campaigns should not be a one-and-done proposition but are a valuable strategy in a marketer&#8217;s toolkit. with nearly <a href="https://medium.com/@tech4growthnet/important-2017-powerful-social-media-and-influencer-marketing-stats-and-facts-16a8c45c18bf" target="_blank" rel="noopener noreferrer">three-quarters</a> of marketing professionals citing them as good for business.</p>
<p>If you can partner with them and create a long-term relationship, making them ambassadors of your brand, the message they portray comes across as more trusted instead of promotional. It helps to boost your brand&#8217;s credibility if you&#8217;re seen as trusted by an influencer.</p>
</div>
<div class="content-separator-element"></div>
<h2 id="panel-54854" class="element_heading element_heading__colour-grey element_heading__alignment-left element_heading__weight-regular">Join the Social Influencer Marketing Party</h2>
<div id="panel-54855" class="element_subtext element_subtext__size-regular element_subtext__colour-black element_subtext__alignment-left">
<p>It’s better late than never when it comes to developing an influencer marketing campaign. A good way to start would be to reach out to some of your industry&#8217;s top influencers and show off your great product or service. Otherwise, do research on some of the big-time social media influencers and find out which ones have your target audience as a significant portion of their following and go from there.</p>
<p>Either way, understanding how to use influencer marketing to its true potential will help to drive brand awareness, leads and revenue.</p>
<p>However, when the thoughts comes up please recall the <a href="https://xinicomms.com/influencer-marketing-2/">best influencer marketing company in Lagos Nigeria</a> for <a href="https://xinicomms.com/influencer-marketing-2/">influencer marketing services in Lagos Nigeria</a></p>
</div>
<p>Read More On Our Blog</p>
<h2 class="post-title"><a href="https://xinicomms.com/branding/">Brand Activation – Experiential Marketing Notes</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/printing-services/">Printing Services: Branding Act In Prints Communication</a></h2>
</div>
<p>The post <a rel="nofollow" href="https://xinicomms.com/marketing-services-in-nigeria/">Influencer Key Goals In A Few Years From Now</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>MEA BEST BRANDING AND DIGITAL MARKETING AGENCY 2019 IN NIGERIA</title>
		<link>https://xinicomms.com/best-branding-digital-marketing-agency-in-nigeria/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=best-branding-digital-marketing-agency-in-nigeria</link>
				<pubDate>Fri, 05 Jul 2019 13:06:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[ALL @ 10 News Updates]]></category>
		<category><![CDATA[Brand Activations]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Branding, Printing & Logistics]]></category>
		<category><![CDATA[Charles Ataghoma]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Experiential Marketing]]></category>
		<category><![CDATA[Public Relations]]></category>
		<category><![CDATA[Agency]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4362</guid>
				<description><![CDATA[<p>KEEP WINNING! XINI COMMUNICATIONS LIMITED ANNOUNCED AS THE BEST BRANDING AND DIGITAL MARKETING AGENCY IN NIGERIA IN THE 2019 AFRICAN EXCELLENCE BUSINESS AWARDS. Congratulations to the XINI team with a spotlighting credit across the world, We are more than delighted for your winning category by the creative team led by the Founder/Managing Director  Charles Ataghoma [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/best-branding-digital-marketing-agency-in-nigeria/">MEA BEST BRANDING AND DIGITAL MARKETING AGENCY 2019 IN NIGERIA</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<h3>KEEP WINNING! XINI COMMUNICATIONS LIMITED ANNOUNCED AS THE BEST BRANDING AND DIGITAL MARKETING AGENCY IN NIGERIA IN THE 2019 AFRICAN EXCELLENCE BUSINESS AWARDS.</h3>
<p><strong>Congratulations </strong>to the XINI team with a spotlighting credit across the world, We are more than delighted for your winning category by the creative team led by the Founder/Managing Director  Charles Ataghoma of XINI Communications Limited as they include an exceptionally fit achievement to their portfolio as the <a href="https://www.mea-markets.com/2019-xini-communications-limited">Best Branding And Digital Marketing Agency In Nigeria for the year 2019</a>.</p>
<p><strong>United Kingdom, 2019</strong>&#8211; MEA Markets magazine announces the winners of the 2019 African Excellence Business Awards.</p>
<p>Although the economy is fluctuating we believe in Og Mandino’s words: ‘always seek out the seed of triumph in every adversity’. Showcasing the most outstanding businesses from across, but not limited to industries such as, energy, agriculture, mining and tourism to the uncovering the innovators in disciplines like banking, technology and real estate development, we have provided an overview of the best of the best from across the region.</p>
<p>Commenting on the success of these deserving winners, Edward Faulkner, Awards Coordinator said: “Congratulations to all of my winners, you are truly the best that the African corporate market has to offer. I am very proud of all of you and I wish you the very best of luck for the future.”</p>
<p><a href="https://www.mea-markets.com/2019-xini-communications-limited"><img class="alignnone wp-image-4363 size-full" src="https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria.jpg" alt="MEA Best Branding and Digital Marketing Agency In Nigeria 2019" width="1800" height="600" srcset="https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria.jpg 1800w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-300x100.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-768x256.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-1024x341.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-685x228.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-570x190.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-490x163.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-370x123.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-270x90.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/07/Best-Branding-And-Digital-Marketing-Agency-In-Nigeria-210x70.jpg 210w" sizes="(max-width: 1800px) 100vw, 1800px" /></a>To find out more about these prestigious awards, and the dedicated professionals selected for them, please visit <a href="https://www.mea-markets.com/">https://www.mea-markets.com/</a> where you can view our winners supplement and full winners list.</p>
<p>ENDS</p>
<p>Notes to editors.</p>
<p>About MEA Markets</p>
<p>Published quarterly, MEA Markets endeavours to provide readers with the latest business and investment news across the Middle East and Africa regions.</p>
<p>Keeping pace with a vast array of ever-changing sectors thanks to regular contributions from some of the region’s top corporate professionals across a variety of industries, MEA Markets is home to the very best news, features and comment from the people and institutions in the know.</p>
<p>&nbsp;</p>
<p>It is our wish that they keep up the more success in the coming years as it includes the global stage. We must say that Nigeria is proud to have you in Africa as a creative<a href="https://xinicomms.com"> communications company</a>.</p>
<p>&nbsp;</p>
<p>Congratulations Once More!</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/best-branding-digital-marketing-agency-in-nigeria/">MEA BEST BRANDING AND DIGITAL MARKETING AGENCY 2019 IN NIGERIA</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>Branded Marketing Skills</title>
		<link>https://xinicomms.com/branded-marketing-skills/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=branded-marketing-skills</link>
				<pubDate>Fri, 31 May 2019 09:50:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Brand Activations]]></category>
		<category><![CDATA[Brand Management]]></category>
		<category><![CDATA[Branding, Printing & Logistics]]></category>
		<category><![CDATA[Campaign Strategy, Development & Activations]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Prints Price List]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4203</guid>
				<description><![CDATA[<p>Tips to Avoid Getting Burnt Out Thinking of Marketing Ideas Thanks to https://programesecure.com/ for making this a possibility Being in the marketing department of a business can be stressful. It is not like other jobs where you can eventually get the hang of things. Things are difficult at first, but after training and practice, things [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/branded-marketing-skills/">Branded Marketing Skills</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<header class="entry-header">
<h1 class="entry-title">Tips to Avoid Getting Burnt Out Thinking of Marketing Ideas</h1>
</header>
<div class="entry-meta">Thanks to <a href="https://programesecure.com/">https://programesecure.com/</a> for making this a possibility</div>
<div class="entry-content">
<p>Being in the marketing department of a business can be stressful. It is not like other jobs where you can eventually get the hang of things. Things are difficult at first, but after training and practice, things start to get easy. For marketing, you need to keep thinking until you exhaust the last drop of your creative juices.</p>
<p>Once you have succeeded in launching a marketing campaign, you need to move on to the next one. You will start thinking again as if everything went back to zero. It can be exhausting after some time especially if you run out of ideas. These tips will help you stay energised and revitalised as you start thinking of a new <a href="https://programesecure.com/make-passive-income-from-home/">marketing campaign</a>.</p>
<p><img class="aligncenter size-full wp-image-6744 jetpack-lazy-image jetpack-lazy-image--handled" src="https://i2.wp.com/programesecure.com/wp-content/uploads/26735245958_48ce5d64f6-1.jpg?resize=400%2C300&amp;ssl=1" sizes="(max-width: 400px) 100vw, 400px" srcset="//i2.wp.com/programesecure.com/wp-content/uploads/26735245958_48ce5d64f6-1.jpg?w=400&amp;ssl=1 400w, //i2.wp.com/programesecure.com/wp-content/uploads/26735245958_48ce5d64f6-1.jpg?resize=300%2C225&amp;ssl=1 300w" alt="best Search Engine Marketing firms" width="400" height="300" data-recalc-dims="1" data-lazy-loaded="1" /></p>
<h3><span id="Get_out_of_the_office"><strong>Get out of the office</strong></span></h3>
<div id="toc_container" class="no_bullets contracted">
<p class="toc_title">Contents <span class="toc_toggle">[<a href="https://programesecure.com/burnt-out-thinking-of-marketing-ideas/#">show</a>]</span></p>
</div>
<p>You need the inspiration to come up with great ideas. You cannot stay inside your office and see the same view all the time. You are also meeting the same group of people. None of them will inspire you to come up with a new idea. When you are outside, you will meet real people. Some of them are even <a href="https://www.quora.com/What-is-the-difference-between-customer-and-potential-customer">potential customers</a>. You can get inspiration from what they wear, how they interact with one another, and how they present themselves in public. Regardless of your company’s nature, you can get inspiration by observing other people.</p>
<h3><span id="Take_one_task_at_a_time"><strong>Take one task at a time</strong></span></h3>
<p>You need to set goals before you start working on a project. The goals need to be realistic. Having short-term and long-term goals is essential. You will quickly feel exhausted if you keep reaching for the stars instead of taking one step at a time. You also feel accomplished if you achieve short-term goals. Before you know it, you will have excellent ideas to launch your next campaign.</p>
<h3><span id="Take_notes"><strong>Take notes</strong></span></h3>
<p>There is nothing wrong with observing what other companies are doing. It does not mean that you will copy them. You can get inspiration from their <a href="https://support.google.com/google-ads/answer/6304?hl=en">campaigns</a> and use them to your advantage. Find out what works and what does not. You can apply the lessons you learn from your observations as you start thinking of your next campaign.</p>
<h3><span id="Take_a_break"><strong>Take a break</strong></span></h3>
<p>If you cannot think of any campaign, even if you try hard, you need to take a break. Forcing yourself to think of new ideas will only make you feel burnt out. Have a lunch date with your friends. Watch a movie at the cinema. Go to a local tourist destination. In the process, you might even feel inspired to work on your next project, it is always better to work when your mind is clear.</p>
<p>It is normal for anyone working in <a href="https://programesecure.com/4-reasons-why-inbound-call-tracking-is-required-for-digital-marketers/">marketing</a> to feel burnt out at some point. For instance, if you made a successful exhibition display in the past, replicating your success could be a challenge. The people around you are also expecting you to step things up. Do not let the pressure get to you and stay focused. Enjoy your job and look forward to a positive result.</p>
</div>
<p>&nbsp;</p>
<header class="entry-header">
<h1 class="entry-title">6 Tips to Choosing an SEO Tool Provider</h1>
<div class="entry-meta"></div>
</header>
<div class="entry-content">
<p>Most businesses are looking to have an online presence. They also want to reap from it by looking for strategies to implement to achieve their desired sales goals. Having your site optimized through SEO is one of the strategies that can help improve your site’s visibility, ranking, and traffic. There is vast information on how to implement SEO for your site on your own, but this is not recommended. You can assign that task to an <a href="https://en.wikipedia.org/wiki/Search_engine_optimization">SEO</a>tool provider and utilize that time carrying out different tasks.</p>
<p><img class="aligncenter size-full wp-image-7911 jetpack-lazy-image jetpack-lazy-image--handled" src="https://i1.wp.com/programesecure.com/wp-content/uploads/sitemap-website-seo-hierarchy-search-technology-1583907-pxhere.com-1.jpg?resize=810%2C513&amp;ssl=1" sizes="(max-width: 810px) 100vw, 810px" srcset="//i1.wp.com/programesecure.com/wp-content/uploads/sitemap-website-seo-hierarchy-search-technology-1583907-pxhere.com-1.jpg?w=1024&amp;ssl=1 1024w, //i1.wp.com/programesecure.com/wp-content/uploads/sitemap-website-seo-hierarchy-search-technology-1583907-pxhere.com-1.jpg?resize=300%2C190&amp;ssl=1 300w, //i1.wp.com/programesecure.com/wp-content/uploads/sitemap-website-seo-hierarchy-search-technology-1583907-pxhere.com-1.jpg?resize=768%2C487&amp;ssl=1 768w, //i1.wp.com/programesecure.com/wp-content/uploads/sitemap-website-seo-hierarchy-search-technology-1583907-pxhere.com-1.jpg?resize=810%2C513&amp;ssl=1 810w" alt="6 Tips to Choosing an SEO Tool Provider" width="810" height="513" data-recalc-dims="1" data-lazy-loaded="1" /></p>
<p>To choose the best provider for your site, there are things you need to consider. They include:</p>
<h3><span id="1_Objectives_for_Your_Site"><strong>1)</strong> <strong>Objectives for Your Site</strong></span></h3>
<div id="toc_container" class="no_bullets contracted">
<p class="toc_title">Contents <span class="toc_toggle">[<a href="https://programesecure.com/6-tips-to-choosing-an-seo-tool-provider/#">show</a>]</span></p>
</div>
<p>You need to know exactly what you want for your site before reaching out to an SEO tool provider for their services. There are different <a href="https://programesecure.com/much-seo-cost-much-spend-seo-services/">SEO services</a>, and they all differ in application and results.</p>
<p>They are also applicable to different platforms, and you need to choose the most suitable for your site. When in the dark about what you want, look for a firm that offers all SEO services such as <a href="https://ecrawl.com/"><strong>eCrawl</strong></a> to ensure that you get exactly what you are looking for. Talk to them and get into an agreement on the changes and achievements you are looking for.</p>
<h3><span id="2Techniques_and_Tools_Used"><strong>2)</strong> <strong>Techniques and Tools Used</strong></span></h3>
<p>You can choose a provider depending on the tools, activities, and approaches they use for SEO. Ensure they are legit as illegal techniques such as <a href="https://programesecure.com/best-seo-agency-in-your-area/">black hat SEO</a> as they might get your site penalized for unscrupulous tactics leaving you with a poorly ranked site.</p>
<p>Have the provider list all the techniques they will implement for your site. They should also inform you of the key performance indicators you need to look for when keeping an eye on your site. Some can use one or several tools to help you achieve your targets.</p>
<h3><span id="3Cost"><strong>3)</strong> <strong>Cost</strong></span></h3>
<p>Providers have different rates for their services. Once you determine what you need, compare prices charged by different firms to ensure you get services from firms that fit within your price range. Some firms can offer packages for services they offer or customize the prices depending on your needs.</p>
<h3><span id="4Communication"><strong>4)</strong> <strong>Communication</strong></span></h3>
<p>Consider how the <a href="https://www.inc.com/marcel-schwantes/6-companies-that-teach-us-what-it-takes-to-communicate-exceptionally-well.html">firms communicate</a> to their clients before making your investment, as this will apply to you too. Choose firms that constantly keep updating you on changes on your site. You can establish a channel of communication to use for your firm in case you operate on a different schedule.</p>
<h3><span id="5Recommendations"><strong>5)</strong> <strong>Recommendations</strong></span></h3>
<p>To spot a reputable firm, get recommendations from friends, family, or other businesses that have used similar services. You can also review recommendations about each provider by strangers and choose the one with the best reviews. These reviews can be found on the service provider’s site or on other platforms that people have room to offer honest opinions.</p>
<h3><span id="6_Performance"><strong>6) </strong><strong>Performance</strong></span></h3>
<p>In each industry, there are oversight firms that reward their key players with exemplary performance. You can observe and follow up on this and go for firms who receive the awards. This is a sign that their activities are valid and can work for you too. Additionally, this helps you choose legitimate companies as some out there are scams.</p>
<h2><span id="Conclusion">Conclusion-</span></h2>
<p>These were all about some of the tips while choosing seo tool provider. While selecting this, you should take care of both on-page seo optimization techniques and off-page seo optimization techniques and ensure that the tool provides both. Do let me know what you think while selecting the tool.</p>
<header class="entry-header">
<h1 class="entry-title">The Ultimate Startup Marketing Strategy For Incredible Growth</h1>
<div class="entry-meta"></div>
</header>
<div class="entry-content">
<p>We live in the era of start-ups. Thousands of them were burnt just after a short period of existence, while others, however, have succeeded and now represent serious business players.</p>
<p>Let’s revise such advertising platform as Twitter as an example. It was used for communication between several colleagues and co-workers. The idea was not treated seriously for quite a long time. But now it is a new standard for communication on the Internet. What is their secret?</p>
<p><img class="aligncenter size-full wp-image-7653 jetpack-lazy-image jetpack-lazy-image--handled" src="https://i2.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1-1.jpg?resize=810%2C434&amp;ssl=1" sizes="(max-width: 810px) 100vw, 810px" srcset="//i2.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1-1.jpg?w=960&amp;ssl=1 960w, //i2.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1-1.jpg?resize=300%2C161&amp;ssl=1 300w, //i2.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1-1.jpg?resize=768%2C411&amp;ssl=1 768w, //i2.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1-1.jpg?resize=810%2C434&amp;ssl=1 810w" alt="Startup Marketing Strategy For Incredible Growth" width="810" height="434" data-recalc-dims="1" data-lazy-loaded="1" /></p>
<p>First of all we should start with two universal truths:</p>
<ol>
<li>Having a good product doesn’t mean you will be successful.</li>
<li>Good marketing will not help you if your product is nothing, but rubbish.</li>
</ol>
<h2><span id="Basics">Basics</span></h2>
<div id="toc_container" class="no_bullets contracted">
<p class="toc_title">Contents <span class="toc_toggle">[<a href="https://programesecure.com/startup-marketing-strategy-for-incredible-growth/#">show</a>]</span></p>
</div>
<p><strong>Become viral</strong></p>
<p>Hotmail, Dropbox and some their soul friends have won the audience with almost investment to marketing, their secret is in installing viral element to the product. It means that your product should be worth recommendation to a friend.</p>
<p><strong>Communicate with your clients</strong></p>
<p>You may have oceans of traffics, but low conversion rates. No time for guessing – ask your clients what frightens or dissatisfies them in your offer. There are thousands of ways to start opinion polls, Survey Monkey as a variant.</p>
<p>Note: users will be reluctant to spend their time for no compensation. You may offer your master class available for a specific audience or a trial period with full facilities.</p>
<p><strong>Get feedbacks</strong></p>
<p>New start-ups should be interested in the clients’ feedbacks. They are very short of time to react and improve the product until it is not too late. To be honest, people are quite lazy to fill all the questionnaires, think how you can motivate them.</p>
<p><strong>Start with small audiences</strong></p>
<p>Become mass market is good idea, but public is very reluctant and suspicious about changes. Being a new product, you’d better earn confidence from newbies and innovators. After positive experience with your products, being praised, you can attack mass markets. Try to use different channels to attract your customers – <a href="https://polus.media/">RTB advertising network,</a> social media, video content, PPC ads etc</p>
<h2><span id="Paid_marketing">Paid marketing</span></h2>
<p>It is silly to think that start-ups should use only free means for promotion. It is certainly wise if you spend $1 for attracting one user and he brings you 5 more. The most popular variants are the following:</p>
<p><strong>Paid Search Marketing</strong></p>
<p>If you have a treatment for a common human’s problem – they are very likely to google it. <a href="https://programesecure.com/absolute-best-method-use-digital-marketing-companies-india/">Paid search</a> results are displayed over natural query. Some people may not even notice that small mark “ads”. The principle based on laziness as searching the answer on the 10th page is really long and if your snippet is attractive and likely to offer what your client need – why hesitate?</p>
<p>Main disadvantage is that it will be stopped as soon as you finish fueling it with money.</p>
<p><strong>Affiliate Marketing</strong></p>
<p>This strategy shouldn’t be considered as a main way out, but will suit as an addition. There are good rates at such places like ClickBank.</p>
<h2><span id="Earned_marketing">Earned marketing</span></h2>
<p>Here we refer any type of advertising that was created by your followers, colleagues or partners – anyone who <a href="https://programesecure.com/best-search-engine-marketing-firms/">share your ideas</a> and want to help.</p>
<p>One of main ideas here is to show that you are unique from others. It is difficult to say what you should exactly do, but people should understand why they should choose you instead of your competitors.</p>
<p>Implement your own channels</p>
<p>There are thousands of ideas like:</p>
<ul>
<li>email marketing;</li>
<li><a href="https://en.wikipedia.org/wiki/Blog">blogging</a>;</li>
<li>create videos about your product;</li>
<li>content marketing;</li>
<li>join social networks where your clients hang out.</li>
<li><a href="https://polus.media/">Online advertising network</a></li>
</ul>
<h2><span id="Bottom_line">Bottom line</span></h2>
<p>You may get surprised, but all you have read just now is not a universal truth. Nobody can exclude human factor or a wonderful stroke of luck, sometimes perfect solutions for your main competitor can be absolutely not applicable for you. What to do? Test, experiment, take examples and tune them to your situation.</p>
</div>
<header class="entry-header">
<h1 class="entry-title">Want to Learn Social Media Marketing Tricks? Read This</h1>
<div class="entry-meta"></div>
</header>
<div class="entry-content">
<p>Social media may have come to us more than twenty years ago and evolving into more as technology advances. <strong><em><u><a href="http://info.broadvisionmarketing.com/social-media-0">Social media marketing</a></u></em></strong> is just one of those additions that are being used by businesses to advertise their company and BroadVision Media can show you just how you can use these platforms to take your business to the next level in the way of marketing.</p>
<p>Businesses have been turning to social media platforms such as Facebook, LinkedIn, Instagram and Twitter as a new way to reach more demographics but also because today’s population seems to have less of an attention span than previously so businesses have had to adjust from using traditional ways of marketing such as radio, television and direct mail to incorporating social media in their advertising campaigns.</p>
<p><img class="aligncenter size-full wp-image-7070 jetpack-lazy-image jetpack-lazy-image--handled" src="https://i0.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1.jpg?resize=810%2C434&amp;ssl=1" sizes="(max-width: 810px) 100vw, 810px" srcset="//i0.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1.jpg?w=960&amp;ssl=1 960w, //i0.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1.jpg?resize=300%2C161&amp;ssl=1 300w, //i0.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1.jpg?resize=768%2C411&amp;ssl=1 768w, //i0.wp.com/programesecure.com/wp-content/uploads/Social_Media_Marketing_Strategy-1.jpg?resize=810%2C434&amp;ssl=1 810w" alt="Learn Social Media Marketing Tricks" width="810" height="434" data-recalc-dims="1" data-lazy-loaded="1" /></p>
<p>If you’re a business owner you know that the time it takes to put together an effective marketing campaign is the time you don’t have, that is why you have a marketing team or outsource to a marketing agency.</p>
<p>Today marketing is more effective when sharing content, staying updated with the<a href="https://programesecure.com/instagram-followers-on-sale-at-the-cheapest-price/"> latest trends</a> in your field as a way to gain new clients while keeping current ones engaged enough to come back.</p>
<p>I don’t know how to use anything but Facebook and I can’t do more than like posts and comment on pictures.</p>
<p><strong><em><u><a href="https://www.broadvisionmarketing.com/">BroadVision Media</a></u></em></strong> is a perfect example of a company who has the 411 on using <a href="https://programesecure.com/successful-media-blogger-and-become-famous/">social media marketing</a> to increase your business awareness and clientele. BroadVision Media’s main focus is on inbound marketing a smart way to get your business up and running by redesigning your website and increasing your followers on social media platforms an that is exactly what BroadVision Media does for you, step by step.</p>
<h2><span id="What_is_Inbound_Marketing"><strong>What is Inbound Marketing?</strong></span></h2>
<div id="toc_container" class="no_bullets contracted">
<p class="toc_title">Contents <span class="toc_toggle">[<a href="https://programesecure.com/learn-social-media-marketing-tricks/#">show</a>]</span></p>
</div>
<p>An example of inbound marketing is using <a href="https://www.slideshare.net/HubSpot/what-is-inbound-marketing-29665969">HubSpot’s methodology</a>; Attract, Engage, Delight. This method is used by uploading videos, relevant content and social media posts to attract hot leads.</p>
<p>The second step is to engage the potential client using marketing automation, lead management, and conversational bots. Those who remain, become engaged and are happy to receive<a href="https://en.wikipedia.org/wiki/Email_marketing"> email marketing</a>, emails that start a conversation and smart content from the business without feeling solicited.</p>
<h2><span id="Followers_who_don8217t_unfollow"><strong>Followers who don’t unfollow.</strong></span></h2>
<p>In the present day of phishing, scams, and bots using <strong><em><u><a href="https://www.searcheccentric.com/social-media-services">social media company’s</a></u></em></strong> like BroadVision Media who use keywords and <a href="https://programesecure.com/complete-overview-social-media-marketing/">Social Media</a>marketing in addition to their inbound marketing is a new type of service to businesses especially to those who may not be as tech savvy or educated in the way of different social media platforms so BroadVision Media has designed a business to help business owners to use these tools with guidance that will, in turn, increase brand awareness and clientele.</p>
<h2><span id="So_how_does_one_gain_followers"><strong>So how does one gain followers?</strong></span></h2>
<p>Chose interesting content that is relevant to your business and use hashtags beyond the obvious. Upload videos and pictures of employee’s, the office, people at work and post on a regular basis using relevant hashtags such as #businessnameanniversary #workinghardorharlyworking #yolo #lovemyjob #alwayscreating.</p>
</div>
<header class="entry-header">
<h1 class="entry-title"><a href="https://xinicomms.com/contact-us/"><img class="aligncenter wp-image-4109 size-medium" src="https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-300x90.jpg" alt="Request Quote" width="300" height="90" srcset="https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-300x90.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-570x170.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-490x146.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-370x111.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-270x81.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now-210x63.jpg 210w, https://xinicomms.com/wp-content/uploads/2019/05/Get-Quote-Now.jpg 676w" sizes="(max-width: 300px) 100vw, 300px" /></a></h1>
<h1 class="entry-title">The Website That Makes Instagram Followers on Sale at the Cheapest Price</h1>
</header>
<div class="entry-content">
<p>You must have heard the phrase “A Picture is worth a Thousand Words”. <strong>Instagram</strong> is a social media platform for photos sharing and networking and the phrase is the best caption or tagline for Instagram. With so many social media platforms available today, Instagram is the <strong>#1</strong>. Everybody who uses a smartphone has an account on Instagram, with thousands of new users registering daily.</p>
<p>Social media has become a game changer in the field of marketing. If anyone wants to <a href="https://programesecure.com/burnt-out-thinking-of-marketing-ideas/">run a business</a> or get recognized, then Instagram is the platform with a lot of potential. Getting noticed on such a platform is always helpful in establishing or expanding the business, getting recognized, and many more individual goals.</p>
<p>The first thing you want to do on Instagram is to get some followers to follow your content. Now, people think that this is the easiest part but it is not. In fact, this is the most difficult part of Instagram.</p>
<p>It takes determination, peace, skill, and commitment to gain <strong>followers</strong>. Let me ask you a question, what is the first thing you notice on someone’s profile? The answer is the <strong>number of followers</strong>.</p>
<p>The Second thing you do is to look at the <a href="https://programesecure.com/how-to-buy-instagram-comments/"><strong>likes</strong> or <strong>comments</strong> </a>on any of the picture of the profile. Following someone is easy but liking the content takes time. You have to build a profile that can attract the target audience that will spread the word about your profile.</p>
<p><img class="aligncenter size-full wp-image-6890 jetpack-lazy-image jetpack-lazy-image--handled" src="https://i2.wp.com/programesecure.com/wp-content/uploads/gsmarena_001-1.jpg?resize=728%2C455&amp;ssl=1" sizes="(max-width: 728px) 100vw, 728px" srcset="//i2.wp.com/programesecure.com/wp-content/uploads/gsmarena_001-1.jpg?w=728&amp;ssl=1 728w, //i2.wp.com/programesecure.com/wp-content/uploads/gsmarena_001-1.jpg?resize=300%2C188&amp;ssl=1 300w, //i2.wp.com/programesecure.com/wp-content/uploads/gsmarena_001-1.jpg?resize=320%2C200&amp;ssl=1 320w" alt="The Website That Makes Instagram Followers on Sale at the Cheapest Price" width="728" height="455" data-recalc-dims="1" data-lazy-loaded="1" /></p>
<h2><strong>Advantages of Instagram to any business or individual:</strong></h2>
<ul>
<li>Posting a picture or a video about the company’s product, office culture, and behind the scene operations on Instagram brings the people closest to you. If people like your content they will spread it like an epidemic. Using lucrative <a href="https://later.com/blog/ultimate-guide-to-using-instagram-hashtags/"><strong>hashtags</strong></a> regarding the product you can speak to a large part of society.</li>
<li>Instagram helps in <a href="https://programesecure.com/digital-marketing-mean-business/">getting <strong>reviews</strong></a> of the customers. If someone is following you on Instagram, that means he/she is interested in your content. If your business appeals to your followers, they will surely leave <a href="https://en.wikipedia.org/wiki/Positive_feedback"><strong>positive feedbacks</strong></a> and bring more and more people to your profile. It is the human psychology if someone sees that some profile has a few million <strong>followers</strong>, odds are he/she will look up the profile and <strong>follow</strong> it.</li>
<li>Instagram can be used to endorse your products. People follow celebrities from Hollywood, footballers, and various famous personalities. These celebrities can promote your brand/product on <strong>Instagram</strong>. It saves a lot amount of money compared to tele-promoting.</li>
<li>Posting stories daily or posting pictures/videos from time to time keeps your followers engaged. People can always connect with you through the personal chat option. You can also share live video with your followers whenever you launch something new. This builds the trust and sometimes you get to feature in the search/trending section.</li>
<li>Unlike some social media platforms, Instagram does not have any character limit describing your image (captioning) as well as the number of posts limit. You can post any number of posts daily or in total.</li>
<li>For a talented individual with a certain skill set, Instagram will surely bring recognition, fame, money, and what not. You just have to keep your audience close to your Instagram page and make them like you.</li>
</ul>
<p>Looking at these advantages you must be tempted to create new accounts and start your journey on the platform of Instagram. But managing a business is not easy. It takes time, energy and determination to manage the business. Running an Instagram is a similarly challenging task. An easy way to manage Instagram is to buy <strong>Instagram followers</strong>.</p>
<p>By buying the followers, you can save your precious time and money. Let us look at this step logically, if you buy a certain number of followers. This will ultimately increase the number of people who see your business. You might know that phrase people attract people, the more people see your products, more is the sales, and you will get more profits.</p>
<p>There are some companies which provide services like providing followers, likes, comments, tweets, etc. <a href="https://www.instafollowers.co/"><strong>Instafollowers.co</strong> </a>is one of the leading companies in this growing market. With the cheapest rates and 24/7 customer support, Instafollowers.co is making a difference. <strong>Instafollowers.co </strong>is equipped with social media advisors.</p>
<p>Every client is treated with respect and every promotional demand is studied with utmost priority. If clients need any suggestions or one to one sessions with the advisors, it can be arranged. You can get 1000 regular (bot) followers for $4 and 1000 real followers for $5. They also provide discounts and special offers if you buy in large quantities.</p>
<h2><strong>Merits of Instafollowers.co</strong></h2>
<ul>
<li>Provides both active and regular followers to your account within minutes of the payment.</li>
<li>A fast and efficient payment method like Paypal is used. As soon as you make the payment, the service that was bought is brought to the user.</li>
<li>You do not need to provide the password of your account. Just give them your Instagram username and you will get the service.</li>
<li>Support team works hand in hand with the designer team. If you have any problem regarding anything Contact them, support will reply with a quick response.</li>
<li>In addition to the followers, they also sell likes, comments for your pictures. You just need to take a leap of faith and register with them.</li>
<li>It is absolutely legal to buy Instagram followers. Active followers will interact with your content and they will share more and more.</li>
</ul>
<p>About our branding and printing services</p>
<figure id="attachment_4047" aria-describedby="caption-attachment-4047" style="width: 300px" class="wp-caption alignnone"><a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/"><img class="wp-image-4047 size-medium" src="https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-300x96.jpg" alt="Printing Company In Lagos Nigeria" width="300" height="96" srcset="https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-300x96.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-768x245.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-1024x327.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-685x219.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-570x182.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-490x157.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-370x118.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-270x86.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background-210x67.jpg 210w, https://xinicomms.com/wp-content/uploads/2019/05/Xini-Prints-Background.jpg 1706w" sizes="(max-width: 300px) 100vw, 300px" /></a><figcaption id="caption-attachment-4047" class="wp-caption-text">Printing Company In Lagos Nigeria</figcaption></figure>
<p>As soon as you register with Instafollowers.co and buy the followers, traffic will increase to your account. Keep posting appealing content and the followers will bring more real followers. Everyone wants to gain more and more likes and comments on the pictures, so reach out to Instafollowers.co and register now. A recent study has revealed that the number of local businesses which uses Instagram is limited. So grab this opportunity and enter this area of low competition and grow your business with Instafollowers.co. you can also get an updated business scope with <a href="https://nationalviews.com">https://nationalviews.com</a></p>
<p>Read more about <a href="https://xinicomms.com/printing-branding-advertising-from-wiki/">printing-branding-advertising-from-wiki</a></p>
<p>Read more about <a href="https://xinicomms.com/marketing/">marketing</a></p>
<p>We are the fastest growing <a href="https://xinicomms.com/">marketing company in Lagos Nigeria</a></p>
</div>
</div>
<p>The post <a rel="nofollow" href="https://xinicomms.com/branded-marketing-skills/">Branded Marketing Skills</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>The Relationship Between Advertising &#124; Printing &#124; Branding From Wiki</title>
		<link>https://xinicomms.com/printing-branding-advertising-from-wiki/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=printing-branding-advertising-from-wiki</link>
				<pubDate>Mon, 27 May 2019 14:09:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Brand Activations]]></category>
		<category><![CDATA[Brand Consultancy For Launching Brands In West Africa]]></category>
		<category><![CDATA[Brand Management]]></category>
		<category><![CDATA[Branding, Printing & Logistics]]></category>
		<category><![CDATA[Campaign Strategy, Development & Activations]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Marketing Communications]]></category>
		<category><![CDATA[Prints Price List]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4196</guid>
				<description><![CDATA[<p>Advertising is key and with the help of shopify we could get more info out to people about it What is Advertising? Advertising is a marketing tactic involving paying for space to promote a product, service, or cause. The actual promotional messages are called advertisements, or ads for short. The goal of advertising is to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/printing-branding-advertising-from-wiki/">The Relationship Between Advertising | Printing | Branding From Wiki</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<h2>Advertising is key and with the help of <a href="https://www.shopify.com/encyclopedia/advertising">shopify</a> we could get more info out to people about it</h2>
<h2>What is Advertising?</h2>
<p>Advertising is a marketing tactic involving paying for space to promote a product, service, or cause. The actual promotional messages are called advertisements, or ads for short. The goal of advertising is to reach people most likely to be willing to pay for a company’s products or services and entice them to buy.</p>
<h2>Finding Your Ideal Customer</h2>
<p>When trying to zero in on the types of people who are more likely to need or want your goods or services, and be willing to shell out hard-earned cash for it, you might look at demographic characteristics, such as:</p>
<ul>
<li>Gender</li>
<li>Age</li>
<li>Education level</li>
<li>Income level</li>
<li>Zip code</li>
</ul>
<p>By more precisely defining who your target customer is, you can better choose advertising vehicles that will reach more of your target customers for less money. Sure, you can buy an expensive ad in the <em>Wall Street Journal</em>, for example, but if your best customers live in the western Boston suburbs, you can buy ads in local papers there for far less.</p>
<h2>Where to Advertise</h2>
<p>Traditional <a href="https://xinicomms.com/">advertising</a> outlets include newspapers, <a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">magazines</a>, TV and radio stations. Today, however, advertisements are placed nearly everywhere and anywhere, including:</p>
<ul>
<li>Roadside billboards</li>
<li>Sides of buildings</li>
<li>Websites</li>
<li>Electronic newsletters</li>
<li>Print newsletters</li>
<li>Inside bills</li>
<li><a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">Product packaging</a></li>
<li>Restaurant placemats</li>
<li>Event bulletins</li>
<li>Store windows</li>
<li>The sides of cars and trucks</li>
<li>Subway car walls</li>
<li>Airport kiosks</li>
<li>Sporting arenas</li>
<li>YouTube videos</li>
</ul>
<p><em>Even if you are the<a href="https://happydiyhome.com/best-small-shop-vac/"> best small shop</a> in your area you still need Advertising as key.</em></p>
<h2>Creating Effective Ads</h2>
<p>Advertising messages themselves are designed to persuade an individual to buy a company’s goods or services. Even in business-to-business transactions, individuals have to first be convinced to choose one product over another. To accomplish this, ads have five main components:</p>
<ol>
<li><strong>Headline</strong> &#8211; This is the key attention-getting message. “Got milk?” is a perfect headline. Or Wendy’s old, “Where’s the beef?”</li>
<li><strong>Subhead</strong> &#8211; Some ad headlines need clarification, much like a book’s subtitle.</li>
<li><strong>Body copy</strong> &#8211; The meat of the advertising message occurs in the main section where the product or service’s features and benefits are highlighted.</li>
<li><strong>Image</strong> &#8211; Unless you’re advertising on the radio, including a product photo, or image illustrating a key benefit is critical.</li>
<li><strong>Call-to-action</strong> &#8211; At the end of the ad you want to invite the consumer to take a step towards doing business with you, such as calling a toll-free number, visiting a website, texting a certain number, or pulling into the drive-thru window.</li>
</ol>
<p>While advertising is the only way to guarantee that your message will be seen or heard, it is expensive by comparison to other marketing methods. For that reason, it is more popular with large corporations and brands than small businesses.</p>
<p>&nbsp;</p>
<p>At the time of this post shopify was the number one ranking website for the word Advertising but however, we would check through what other platforms offer.</p>
<p>&nbsp;</p>
<p>Let check wiki from <a href="https://en.wikipedia.org/wiki/Advertising">https://en.wikipedia.org/wiki/Advertising</a></p>
<p><b>Advertising</b> is a <a title="Marketing" href="https://en.wikipedia.org/wiki/Marketing">marketing</a> communication that employs an openly sponsored, non-personal message to promote or sell a product, service or idea.<sup id="cite_ref-Stanton_1-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Stanton-1">[1]</a></sup><sup class="reference">:465</sup> Sponsors of advertising are typically businesses wishing to promote their products or services. Advertising is differentiated from public relations in that an advertiser pays for and has control over the message. It differs from personal selling in that the message is non-personal, i.e., not directed to a particular individual.<sup id="cite_ref-Stanton_1-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Stanton-1">[1]</a></sup><sup class="reference">:661,672</sup> Advertising is communicated through various mass media,<sup id="cite_ref-Bovee_2-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Bovee-2">[2]</a></sup> including <a title="Old media" href="https://en.wikipedia.org/wiki/Old_media">traditional media</a> such as newspapers, magazines, <a title="Television advertisement" href="https://en.wikipedia.org/wiki/Television_advertisement">television</a>, <a title="Radio advertisement" href="https://en.wikipedia.org/wiki/Radio_advertisement">radio</a>, <a class="mw-redirect" title="Outdoor advertising" href="https://en.wikipedia.org/wiki/Outdoor_advertising">outdoor advertising</a> or <a class="mw-redirect" title="Direct mail" href="https://en.wikipedia.org/wiki/Direct_mail">direct mail</a>; and <a title="New media" href="https://en.wikipedia.org/wiki/New_media">new media</a> such as <a title="Online advertising" href="https://en.wikipedia.org/wiki/Online_advertising#Search_ads">search results</a>, blogs, social media, websites or text messages. The actual presentation of the message in a medium is referred to as an <b>advertisement</b>, or &#8220;<b>ad</b>&#8221; or <b>advert</b> for short.</p>
<p>Commercial ads often seek to generate increased consumption of their products or services through &#8220;<a title="Brand" href="https://en.wikipedia.org/wiki/Brand">branding</a>&#8220;, which associates a product name or image with certain qualities in the minds of consumers. On the other hand, ads that intend to elicit an immediate sale are known as <a class="mw-redirect" title="Direct response advertising" href="https://en.wikipedia.org/wiki/Direct_response_advertising">direct-response advertising</a>. <a title="Non-commercial" href="https://en.wikipedia.org/wiki/Non-commercial">Non-commercial</a> entities that advertise more than consumer products or services include political parties, interest groups, religious organizations and governmental agencies. Non-profit organizations may use free modes of <a title="Persuasion" href="https://en.wikipedia.org/wiki/Persuasion">persuasion</a>, such as a <a title="Public service announcement" href="https://en.wikipedia.org/wiki/Public_service_announcement">public service announcement</a>. Advertising may also help to reassure employees or shareholders that a company is viable or successful.</p>
<p>Modern advertising originated with the techniques introduced with <a class="mw-redirect" title="Tobacco advertising" href="https://en.wikipedia.org/wiki/Tobacco_advertising">tobacco advertising</a> in the 1920s, most significantly with the campaigns of <a title="Edward Bernays" href="https://en.wikipedia.org/wiki/Edward_Bernays">Edward Bernays</a>, considered the founder of modern, &#8220;<a title="Madison Avenue" href="https://en.wikipedia.org/wiki/Madison_Avenue">Madison Avenue</a>&#8221; advertising.<sup id="cite_ref-Studlar2002p55_3-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Studlar2002p55-3">[3]</a></sup><sup id="cite_ref-Gifford2010p15_4-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Gifford2010p15-4">[4]</a></sup></p>
<p>Worldwide spending on advertising in 2015 amounted to an estimated <a title="United States dollar" href="https://en.wikipedia.org/wiki/United_States_dollar">US$</a>529.43<span class="nowrap"> </span>billion.<sup id="cite_ref-Carat092015_5-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Carat092015-5">[5]</a></sup> Advertising&#8217;s projected distribution for 2017 was 40.4% on TV, 33.3% on digital, 9% on newspapers, 6.9% on magazines, 5.8% on outdoor and 4.3% on radio.<sup id="cite_ref-6" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-6">[6]</a></sup> Internationally, the largest (&#8220;Big Five&#8221;) <a title="Advertising agency" href="https://en.wikipedia.org/wiki/Advertising_agency">advertising-agency</a> groups are <a title="Dentsu" href="https://en.wikipedia.org/wiki/Dentsu">Dentsu</a>, <a class="mw-redirect" title="Interpublic" href="https://en.wikipedia.org/wiki/Interpublic">Interpublic</a>, <a class="mw-redirect" title="Omnicom" href="https://en.wikipedia.org/wiki/Omnicom">Omnicom</a>, <a title="Publicis" href="https://en.wikipedia.org/wiki/Publicis">Publicis</a>, and <a class="mw-redirect" title="WPP Group" href="https://en.wikipedia.org/wiki/WPP_Group">WPP</a>.<sup id="cite_ref-7" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-7">[7]</a></sup></p>
<p>In Latin, <i>advertere</i> means &#8220;to turn towards&#8221;.<sup id="cite_ref-8" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-8">[8]</a></sup></p>
<p>&nbsp;</p>
<h2><span id="History" class="mw-headline">History</span></h2>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="History of advertising" href="https://en.wikipedia.org/wiki/History_of_advertising">History of advertising</a></div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Bronze_printing_plate_for_an_advertisement.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Bronze_printing_plate_for_an_advertisement.jpg/220px-Bronze_printing_plate_for_an_advertisement.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Bronze_printing_plate_for_an_advertisement.jpg/330px-Bronze_printing_plate_for_an_advertisement.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/69/Bronze_printing_plate_for_an_advertisement.jpg/440px-Bronze_printing_plate_for_an_advertisement.jpg 2x" alt="" width="220" height="217" data-file-width="1798" data-file-height="1772" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Bronze plate for printing an advertisement for the Liu family needle shop at <a title="Jinan" href="https://en.wikipedia.org/wiki/Jinan">Jinan</a>, <a title="Song dynasty" href="https://en.wikipedia.org/wiki/Song_dynasty">Song dynasty</a> China. It is the world&#8217;s earliest identified printed advertising medium.</p>
</div>
</div>
</div>
<p>Egyptians used <a title="Papyrus" href="https://en.wikipedia.org/wiki/Papyrus">papyrus</a> to make sales messages and wall posters.<sup id="cite_ref-9" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-9">[9]</a></sup> <a title="Advertising campaign" href="https://en.wikipedia.org/wiki/Advertising_campaign">Commercial messages</a> and political campaign displays have been found in the ruins of <a title="Pompeii" href="https://en.wikipedia.org/wiki/Pompeii">Pompeii</a> and ancient <a title="Arabian Peninsula" href="https://en.wikipedia.org/wiki/Arabian_Peninsula">Arabia</a>. <a title="Lost and found" href="https://en.wikipedia.org/wiki/Lost_and_found">Lost and found</a> advertising on papyrus was common in <a title="Ancient Greece" href="https://en.wikipedia.org/wiki/Ancient_Greece">ancient Greece</a> and <a title="Ancient Rome" href="https://en.wikipedia.org/wiki/Ancient_Rome">ancient Rome</a>. Wall or rock painting for commercial advertising is another manifestation of an ancient advertising form, which is present to this day in many parts of Asia, Africa, and South America. The tradition of wall painting can be traced back to Indian <a title="Rock art" href="https://en.wikipedia.org/wiki/Rock_art">rock art</a> paintings that date back to 4000 BC.<sup id="cite_ref-Bhatia_10-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Bhatia-10">[10]</a></sup></p>
<p>In ancient China, the earliest advertising known was oral, as recorded in the <a title="Classic of Poetry" href="https://en.wikipedia.org/wiki/Classic_of_Poetry">Classic of Poetry</a> (11th to 7th centuries BC) of bamboo flutes played to sell confectionery. Advertisement usually takes in the form of calligraphic signboards and inked papers. A copper printing plate dated back to the <a title="Song dynasty" href="https://en.wikipedia.org/wiki/Song_dynasty">Song dynasty</a> used to print posters in the form of a square sheet of paper with a rabbit logo with &#8220;<a title="Jinan" href="https://en.wikipedia.org/wiki/Jinan">Jinan</a> Liu&#8217;s Fine Needle Shop&#8221; and &#8220;We buy high-quality steel rods and make fine-quality needles, to be ready for use at home in no time&#8221; written above and below<sup id="cite_ref-11" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-11">[11]</a></sup>is considered the world&#8217;s earliest identified printed advertising medium.<sup id="cite_ref-12" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-12">[12]</a></sup></p>
<p>In Europe, as the towns and cities of the Middle Ages began to grow, and the general population was unable to read, instead of signs that read &#8220;cobbler&#8221;, &#8220;miller&#8221;, &#8220;tailor&#8221;, or &#8220;blacksmith&#8221;, images associated with their trade would be used such as a boot, a suit, a hat, a clock, a diamond, a horseshoe, a candle or even a bag of flour. Fruits and vegetables were sold in the city square from the backs of carts and wagons and their proprietors used street callers (<a title="Town crier" href="https://en.wikipedia.org/wiki/Town_crier">town criers</a>) to announce their whereabouts. The first compilation of such advertisements was gathered in &#8220;Les Crieries de Paris&#8221;, a thirteenth-century poem by Guillaume de la Villeneuve.<sup id="cite_ref-13" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-13">[13]</a></sup></p>
<p>In the 18th century advertisements started to appear in weekly newspapers in England. These early print advertisements were used mainly to promote books and newspapers, which became increasingly affordable with advances in the printing press; and medicines, which were increasingly sought after. However, <a title="False advertising" href="https://en.wikipedia.org/wiki/False_advertising">false advertising</a> and so-called &#8220;<a title="Quackery" href="https://en.wikipedia.org/wiki/Quackery">quack</a>&#8221; advertisements became a problem, which ushered in the regulation of advertising content.</p>
<h3><span id="19th_century" class="mw-headline">19th century</span></h3>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Edo_period_advertising_in_Japan.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Edo_period_advertising_in_Japan.jpg/220px-Edo_period_advertising_in_Japan.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Edo_period_advertising_in_Japan.jpg/330px-Edo_period_advertising_in_Japan.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/03/Edo_period_advertising_in_Japan.jpg/440px-Edo_period_advertising_in_Japan.jpg 2x" alt="" width="220" height="280" data-file-width="1405" data-file-height="1786" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p><a title="Edo period" href="https://en.wikipedia.org/wiki/Edo_period">Edo period</a> LEL flyer from 1806 for a traditional medicine called <i>Kinseitan</i></p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Scott_Omnibus.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Scott_Omnibus.jpg/220px-Scott_Omnibus.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Scott_Omnibus.jpg/330px-Scott_Omnibus.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Scott_Omnibus.jpg/440px-Scott_Omnibus.jpg 2x" alt="" width="220" height="132" data-file-width="585" data-file-height="350" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p><a title="David Scott (painter)" href="https://en.wikipedia.org/wiki/David_Scott_(painter)">David Scott</a>&#8216;s depiction of the interior of an early 19th Century omnibus conspicuously shows the advertisements placed overhead</p>
</div>
</div>
</div>
<p><a title="Thomas J. Barratt" href="https://en.wikipedia.org/wiki/Thomas_J._Barratt">Thomas J. Barratt</a> of London has been called &#8220;the father of modern advertising&#8221;.<sup id="cite_ref-14" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-14">[14]</a></sup><sup id="cite_ref-mat_15-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-mat-15">[15]</a></sup><sup id="cite_ref-nick_16-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-nick-16">[16]</a></sup> Working for the <a class="mw-redirect" title="Pears Soap" href="https://en.wikipedia.org/wiki/Pears_Soap">Pears Soap</a> company, Barratt created an effective advertising campaign for the company products, which involved the use of targeted slogans, images and phrases. One of his slogans, &#8220;Good morning. Have you used Pears&#8217; soap?&#8221; was famous in its day and into the 20th century.<sup id="cite_ref-obit_17-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-obit-17">[17]</a></sup><sup id="cite_ref-part_18-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-part-18">[18]</a></sup></p>
<p>Barratt introduced many of the crucial ideas that lie behind successful advertising and these were widely circulated in his day. He constantly stressed the importance of a strong and exclusive brand image for Pears and of emphasizing the product&#8217;s availability through saturation campaigns. He also understood the importance of constantly reevaluating the market for changing tastes and mores, stating in 1907 that &#8220;tastes change, fashions change, and the advertiser has to change with them. An idea that was effective a generation ago would fall flat, stale, and unprofitable if presented to the public today. Not that the idea of today is always better than the older idea, but it is different – it hits the present taste.&#8221;<sup id="cite_ref-mat_15-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-mat-15">[15]</a></sup></p>
<p>As the economy expanded across the world during the 19th century, advertising grew alongside. In the United States, the success of this advertising format eventually led to the growth of mail-order advertising.</p>
<p>In June 1836, French newspaper <i><a class="mw-redirect" title="La Presse (France)" href="https://en.wikipedia.org/wiki/La_Presse_(France)">La Presse</a></i> was the first to include paid advertising in its pages, allowing it to lower its price, extend its readership and increase its <a title="Profit (economics)" href="https://en.wikipedia.org/wiki/Profit_(economics)">profitability</a> and the formula was soon copied by all titles. Around 1840, Volney B. Palmer established the roots of the modern day advertising agency in Philadelphia. In 1842 Palmer bought large amounts of space in various newspapers at a discounted rate then resold the space at higher rates to advertisers. The actual ad – the copy, layout, and artwork – was still prepared by the company wishing to advertise; in effect, Palmer was a space broker. The situation changed when the first full-service advertising agency of N.W. Ayer &amp; Son was founded in 1869 in Philadelphia. Ayer &amp; Son offered to plan, create, and execute complete advertising campaigns for its customers. By 1900 the advertising agency had become the focal point of creative planning, and advertising was firmly established as a profession. <sup id="cite_ref-eskilson-pg58_19-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-eskilson-pg58-19">[19]</a></sup> Around the same time, in France, <a title="Charles-Louis Havas" href="https://en.wikipedia.org/wiki/Charles-Louis_Havas">Charles-Louis Havas</a> extended the services of his news agency, <a title="Havas" href="https://en.wikipedia.org/wiki/Havas">Havas</a> to include advertisement brokerage, making it the first French group to organize. At first, agencies were brokers for advertisement space in newspapers.<sup id="cite_ref-eskilson-pg58_19-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-eskilson-pg58-19">[19]</a></sup></p>
<h3><span id="20th_century" class="mw-headline">20th century</span></h3>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Advertising_as_a_percent_of_Gross_Domestice_Product_in_the_United_States.svg"></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Advertising as a percent of gross domestic product in the United States, 1919 to 2007, per Douglas Galbi</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg/220px-Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg/330px-Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg/440px-Advert_for_Guy%27s_Tonic_Wellcome_L0040436.jpg 2x" alt="" width="220" height="360" data-file-width="2544" data-file-height="4160" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Advertisement for Guy&#8217;s Tonic in the 1900s</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Ad_Encyclopaedia-Britannica_05-1913.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Ad_Encyclopaedia-Britannica_05-1913.jpg/220px-Ad_Encyclopaedia-Britannica_05-1913.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Ad_Encyclopaedia-Britannica_05-1913.jpg/330px-Ad_Encyclopaedia-Britannica_05-1913.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/d/d8/Ad_Encyclopaedia-Britannica_05-1913.jpg 2x" alt="" width="220" height="139" data-file-width="406" data-file-height="256" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A print advertisement for the 1913 issue of the <i><a title="Encyclopædia Britannica" href="https://en.wikipedia.org/wiki/Encyclop%C3%A6dia_Britannica">Encyclopædia Britannica</a></i></p>
</div>
</div>
</div>
<p>Advertising increased dramatically in the United States as industrialization expanded the supply of manufactured products. In 1919 it was 2.5 percent of <a title="Gross domestic product" href="https://en.wikipedia.org/wiki/Gross_domestic_product">gross domestic product</a> (GDP) in the US, and it averaged 2.2 percent of GDP between then and at least 2007, though it may have declined dramatically since the <a title="Great Recession" href="https://en.wikipedia.org/wiki/Great_Recession">Great Recession</a>.</p>
<p>Industry could not benefit from its increased productivity without a substantial increase in consumer spending. This contributed to the development of mass marketing designed to influence the population&#8217;s economic behavior on a larger scale.<sup id="cite_ref-20" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-20">[20]</a></sup> In the 1910s and 1920s, advertisers in the U.S. adopted the doctrine that human instincts could be targeted and harnessed – &#8220;<a title="Sublimation (psychology)" href="https://en.wikipedia.org/wiki/Sublimation_(psychology)">sublimated</a>&#8221; into the desire to purchase commodities.<sup id="cite_ref-21" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-21">[21]</a></sup> <a title="Edward Bernays" href="https://en.wikipedia.org/wiki/Edward_Bernays">Edward Bernays</a>, a nephew of <a title="Sigmund Freud" href="https://en.wikipedia.org/wiki/Sigmund_Freud">Sigmund Freud</a>, became associated with the method and is sometimes called the founder of modern advertising and public relations.<sup id="cite_ref-22" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-22">[22]</a></sup> Bernays claimed that:</p>
<blockquote><p>&#8220;[The] general principle, that men are very largely actuated by motives which they conceal from themselves, is as true of mass as of individual psychology. It is evident that the successful propagandist must understand the true motives and not be content to accept the reasons which men give for what they do.&#8221;<sup id="cite_ref-23" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-23">[23]</a></sup></p></blockquote>
<p>In other words, selling products by appealing to the rational minds of customers (the main method used prior to Bernays) was much less effective than selling products based on the unconscious desires that Bernays felt were the true motivators of human action. &#8220;Sex sells&#8221; <a title="Sex in advertising" href="https://en.wikipedia.org/wiki/Sex_in_advertising">became a controversial issue,</a> with techniques for titillating and enlarging the audience posing a challenge to conventional morality.<sup id="cite_ref-24" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-24">[24]</a></sup><sup id="cite_ref-25" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-25">[25]</a></sup></p>
<p>In the 1920s, under <a class="mw-redirect" title="Secretary of Commerce" href="https://en.wikipedia.org/wiki/Secretary_of_Commerce">Secretary of Commerce</a> <a title="Herbert Hoover" href="https://en.wikipedia.org/wiki/Herbert_Hoover">Herbert Hoover</a>, the American government promoted advertising. Hoover himself delivered an address to the Associated Advertising Clubs of the World in 1925 called &#8216;Advertising Is a Vital Force in Our National Life.&#8221;<sup id="cite_ref-26" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-26">[26]</a></sup> In October 1929, the head of the U.S. <a class="mw-redirect" title="Bureau of Foreign and Domestic Commerce" href="https://en.wikipedia.org/wiki/Bureau_of_Foreign_and_Domestic_Commerce">Bureau of Foreign and Domestic Commerce</a>, Julius Klein, stated &#8220;Advertising is the key to world prosperity.&#8221;<sup id="cite_ref-Leach367_27-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Leach367-27">[27]</a></sup>This was part of the &#8220;unparalleled&#8221; collaboration between business and government in the 1920s, according to a 1933 European economic journal.<sup id="cite_ref-28" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-28">[28]</a></sup></p>
<p>The tobacco companies became major advertisers in order to sell packaged cigarettes.<sup id="cite_ref-Brandt2009p31_29-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Brandt2009p31-29">[29]</a></sup> The tobacco companies pioneered the new advertising techniques when they hired Bernays to create positive associations with tobacco smoking.<sup id="cite_ref-Studlar2002p55_3-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Studlar2002p55-3">[3]</a></sup><sup id="cite_ref-Gifford2010p15_4-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Gifford2010p15-4">[4]</a></sup></p>
<p>Advertising was also used as a vehicle for <a title="Cultural assimilation" href="https://en.wikipedia.org/wiki/Cultural_assimilation">cultural assimilation</a>, encouraging workers to exchange their traditional habits and community structure in favor of a shared &#8220;modern&#8221; lifestyle.<sup id="cite_ref-30" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-30">[30]</a></sup> An important tool for influencing immigrant workers was the <a title="American Association of Foreign Language Newspapers" href="https://en.wikipedia.org/wiki/American_Association_of_Foreign_Language_Newspapers">American Association of Foreign Language Newspapers</a> (AAFLN). The AAFLN was primarily an advertising agency but also gained heavily centralized control over much of the immigrant press.<sup id="cite_ref-31" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-31">[31]</a></sup><sup id="cite_ref-32" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-32">[32]</a></sup></p>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:1916-skin-touch-soap-ad.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/1916-skin-touch-soap-ad.jpg/220px-1916-skin-touch-soap-ad.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d7/1916-skin-touch-soap-ad.jpg/330px-1916-skin-touch-soap-ad.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d7/1916-skin-touch-soap-ad.jpg/440px-1916-skin-touch-soap-ad.jpg 2x" alt="" width="220" height="287" data-file-width="600" data-file-height="782" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>1916 <i>Ladies&#8217; Home Journal</i> version of the famous ad by <a title="Helen Lansdowne Resor" href="https://en.wikipedia.org/wiki/Helen_Lansdowne_Resor">Helen Lansdowne Resor</a> of the J. Walter Thompson Agency</p>
</div>
</div>
</div>
<p>At the turn of the 20th century, advertising was one of the few career choices for women. Since women were responsible for most household purchasing done, advertisers and agencies recognized the value of women&#8217;s insight during the creative process. In fact, the first American advertising to use a <a title="Sex in advertising" href="https://en.wikipedia.org/wiki/Sex_in_advertising">sexual sell</a> was created by a woman – for a soap product. Although tame by today&#8217;s standards, the advertisement featured a couple with the message &#8220;A skin you love to touch&#8221;.<sup id="cite_ref-33" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-33">[33]</a></sup></p>
<p>In the 1920s psychologists Walter D. Scott and <a title="John B. Watson" href="https://en.wikipedia.org/wiki/John_B._Watson">John B. Watson</a> contributed applied psychological theory to the field of advertising. Scott said, &#8220;Man has been called the reasoning animal but he could with greater truthfulness be called the creature of suggestion. He is reasonable, but he is to a greater extent suggestible&#8221;.<sup id="cite_ref-34" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-34">[34]</a></sup> He demonstrated this through his advertising technique of a direct command to the consumer.</p>
<h4><span id="On_the_radio_from_the_1920s" class="mw-headline">On the radio from the 1920s</span></h4>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif/220px-1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fb/1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif/330px-1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif 1.5x, //upload.wikimedia.org/wikipedia/commons/f/fb/1930.05.06_Advertisement_for_Radio_Broadcast_With_Lisa_Roma.gif 2x" alt="" width="220" height="314" data-file-width="382" data-file-height="546" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Advertisement for a live radio broadcast, sponsored by a milk company, Adohr milk, and published in the <i><a title="Los Angeles Times" href="https://en.wikipedia.org/wiki/Los_Angeles_Times">Los Angeles Times</a></i> on May 6, 1930</p>
</div>
</div>
</div>
<p>In the early 1920s, the first radio stations were established by radio equipment manufacturers, followed by <a class="mw-redirect" title="Non-profit organization" href="https://en.wikipedia.org/wiki/Non-profit_organization">non-profit organizations</a> such as schools, clubs and civic groups who also set up their own stations.<sup id="cite_ref-uouynv_35-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-uouynv-35">[35]</a></sup> Retailer and consumer goods manufacturers quickly recognised radio&#8217;s potential to reach consumers in their home and soon adopted advertising techniques that would allow their messages to stand out; <a title="Slogan" href="https://en.wikipedia.org/wiki/Slogan">slogans</a>, <a title="Mascot" href="https://en.wikipedia.org/wiki/Mascot">mascots</a>, and <a title="Jingle" href="https://en.wikipedia.org/wiki/Jingle">jingles</a> began to appear on <a title="Radio" href="https://en.wikipedia.org/wiki/Radio">radio</a> in the 1920s and early <a title="Television" href="https://en.wikipedia.org/wiki/Television">television</a> in the 1930s.<sup id="cite_ref-36" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-36">[36]</a></sup></p>
<p>The rise of mass media communications allowed manufacturers of branded goods to bypass retailers by advertising directly to consumers. This was a major paradigm shift which forced manufacturers to focus on the brand and stimulated the need for superior insights into consumer purchasing, consumption and usage behaviour; their needs, wants and aspirations.<sup id="cite_ref-37" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-37">[37]</a></sup> The earliest radio drama series were sponsored by soap manufacturers and the genre became known as a <i><a title="Soap opera" href="https://en.wikipedia.org/wiki/Soap_opera">soap opera</a>.</i><sup id="cite_ref-38" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-38">[38]</a></sup> Before long, radio station owners realized they could increase advertising revenue by selling &#8216;air-time&#8217; in small time allocations which could be sold to multiple businesses. By the 1930s, these <i>advertising spots,</i> as the packets of time became known, were being sold by the station&#8217;s geographical sales representatives, ushering in an era of national radio advertising.<sup id="cite_ref-39" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-39">[39]</a></sup></p>
<p>By the 1940s, manufacturers began to recognize the way in which consumers were developing personal relationships with their brands in a social/psychological/anthropological sense.<sup id="cite_ref-40" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-40">[40]</a></sup> Advertisers began to use motivational research and <a title="Marketing research" href="https://en.wikipedia.org/wiki/Marketing_research">consumer research</a> to gather insights into consumer purchasing. Strong branded campaigns for Chrysler and Exxon/Esso, using insights drawn research methods from psychology and cultural anthropology, led to some of most enduring campaigns of the 20th-century.<sup id="cite_ref-41" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-41">[41]</a></sup></p>
<h4><span id="Commercial_television_in_the_1950s" class="mw-headline">Commercial television in the 1950s</span></h4>
<p>In the early 1950s, the <a title="DuMont Television Network" href="https://en.wikipedia.org/wiki/DuMont_Television_Network">DuMont Television Network</a> began the modern practice of selling advertisement time to multiple sponsors. Previously, DuMont had trouble finding sponsors for many of their programs and compensated by selling smaller blocks of advertising time to several businesses. This eventually became the standard for the commercial television industry in the United States. However, it was still a common practice to have single sponsor shows, such as <a title="The United States Steel Hour" href="https://en.wikipedia.org/wiki/The_United_States_Steel_Hour">The United States Steel Hour</a>. In some instances the sponsors exercised great control over the content of the show – up to and including having one&#8217;s advertising agency actually writing the show.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> The single sponsor model is much less prevalent now, a notable exception being the <a title="Hallmark Hall of Fame" href="https://en.wikipedia.org/wiki/Hallmark_Hall_of_Fame">Hallmark Hall of Fame</a>.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<h4><span id="Cable_television_from_the_1980s" class="mw-headline">Cable television from the 1980s</span></h4>
<p>The late 1980s and early 1990s saw the introduction of cable television and particularly <a title="MTV" href="https://en.wikipedia.org/wiki/MTV">MTV</a>. Pioneering the concept of the music video, MTV ushered in a new type of advertising: the consumer tunes in <i>for</i> the advertising message, rather than it being a <a title="By-product" href="https://en.wikipedia.org/wiki/By-product">by-product</a> or afterthought. As cable and satellite television became increasingly prevalent, <a title="Specialty channel" href="https://en.wikipedia.org/wiki/Specialty_channel">specialty channels</a> emerged, including channels entirely <a title="Shopping channel" href="https://en.wikipedia.org/wiki/Shopping_channel">devoted to advertising</a>, such as <a title="QVC" href="https://en.wikipedia.org/wiki/QVC">QVC</a>, <a title="Home Shopping Network" href="https://en.wikipedia.org/wiki/Home_Shopping_Network">Home Shopping Network</a>, and <a title="ShopTV Canada" href="https://en.wikipedia.org/wiki/ShopTV_Canada">ShopTV Canada</a>.<sup id="cite_ref-42" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-42">[42]</a></sup></p>
<h4><span id="On_the_Internet_from_the_1990s" class="mw-headline">On the Internet from the 1990s</span></h4>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Online advertising" href="https://en.wikipedia.org/wiki/Online_advertising">Online advertising</a></div>
<p>With the advent of the <a class="mw-redirect" title="Ad server" href="https://en.wikipedia.org/wiki/Ad_server">ad server</a>, online advertising grew, contributing to the &#8220;<a title="Dot-com bubble" href="https://en.wikipedia.org/wiki/Dot-com_bubble">dot-com</a>&#8221; boom of the 1990s.<sup id="cite_ref-43" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-43">[43]</a></sup> Entire corporations operated solely on advertising revenue, offering everything from <a title="Coupon" href="https://en.wikipedia.org/wiki/Coupon">coupons</a> to free Internet access. At the turn of the 21st century, some websites, including the <a title="Web search engine" href="https://en.wikipedia.org/wiki/Web_search_engine">search engine</a> <a title="Google" href="https://en.wikipedia.org/wiki/Google">Google</a>, changed <a title="Online advertising" href="https://en.wikipedia.org/wiki/Online_advertising">online advertising</a> by personalizing ads based on web browsing behavior. This has led to other similar efforts and an increase in <a title="Interactive advertising" href="https://en.wikipedia.org/wiki/Interactive_advertising">interactive advertising</a>.<sup id="cite_ref-44" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-44">[44]</a></sup></p>
<p>The share of advertising spending relative to GDP has changed little across large changes in media since 1925. In 1925, the main advertising media in America were newspapers, magazines, signs on <a title="Tram" href="https://en.wikipedia.org/wiki/Tram">streetcars</a>, and outdoor <a title="Poster" href="https://en.wikipedia.org/wiki/Poster">posters</a>. Advertising spending as a share of GDP was about 2.9 percent. By 1998, television and radio had become major advertising media; by 2017, the balance between broadcast and online advertising had shifted, with online spending exceeding broadcast.<sup id="cite_ref-45" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-45">[45]</a></sup> Nonetheless, advertising spending as a share of GDP was slightly lower – about 2.4 percent.<sup id="cite_ref-46" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-46">[46]</a></sup></p>
<p><a title="Guerrilla marketing" href="https://en.wikipedia.org/wiki/Guerrilla_marketing">Guerrilla marketing</a> involves unusual approaches such as staged encounters in public places, giveaways of products such as cars that are covered with brand messages, and interactive advertising where the viewer can respond to become part of the advertising message. This type of advertising is unpredictable, which causes consumers to buy the product or idea.<sup id="cite_ref-47" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-47">[47]</a></sup> This reflects an increasing trend of interactive and &#8220;embedded&#8221; ads, such as via <a title="Product placement" href="https://en.wikipedia.org/wiki/Product_placement">product placement</a>, having consumers vote through text messages, and various campaigns utilizing <a class="mw-redirect" title="Social network service" href="https://en.wikipedia.org/wiki/Social_network_service">social network services</a> such as <a title="Facebook" href="https://en.wikipedia.org/wiki/Facebook">Facebook</a> or <a title="Twitter" href="https://en.wikipedia.org/wiki/Twitter">Twitter</a>.<sup id="cite_ref-48" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-48">[48]</a></sup></p>
<p>The advertising business model has also been adapted in recent years.<sup class="noprint Inline-Template">[<i><a title="Wikipedia:Manual of Style/Dates and numbers" href="https://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Dates_and_numbers#Chronological_items"><span title="The time period mentioned near this tag is ambiguous. (December 2014)">when?</span></a></i>]</sup><sup class="noprint Inline-Template">[<i><a title="Wikipedia:Please clarify" href="https://en.wikipedia.org/wiki/Wikipedia:Please_clarify"><span title="Which advertising model? Specify (January 2017)">clarification needed</span></a></i>]</sup> In <a title="Media for equity" href="https://en.wikipedia.org/wiki/Media_for_equity">media for equity</a>, advertising is not sold, but provided to start-up companies in return for <a title="Equity (finance)" href="https://en.wikipedia.org/wiki/Equity_(finance)">equity</a>. If the company grows and is sold, the media companies receive cash for their shares.</p>
<p>Domain name registrants (usually those who register and renew domains as an investment) sometimes <a title="Domain parking" href="https://en.wikipedia.org/wiki/Domain_parking">&#8220;park&#8221; their domains</a> and allow advertising companies to place ads on their sites in return for per-click payments. These ads are typically driven by pay per click search engines like Google or Yahoo, but ads can sometimes be placed directly on targeted domain names through a domain lease or by making contact with the registrant of a domain name that describes a product. Domain name registrants are generally easy to identify through <a title="WHOIS" href="https://en.wikipedia.org/wiki/WHOIS">WHOIS</a> records that are publicly available at registrar websites.<sup id="cite_ref-icannwhois_49-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-icannwhois-49">[49]</a></sup></p>
<h2><span id="Classification" class="mw-headline">Classification</span></h2>
<div class="thumb tright">
<div class="thumbinner">
<div id="mwe_player_0" class="PopUpMediaTransform" style="position: relative; display: block; margin: 0px auto; width: 220px;"><img class="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/The_Impact_Of_Wikipedia.webm/220px-seek%3D232-The_Impact_Of_Wikipedia.webm.jpg" alt="File:The Impact Of Wikipedia.webm" width="551" height="200" /></div>
<div class="thumbcaption">
<div class="magnify"></div>
<p>An advertisement for the <a title="Wikimedia Foundation" href="https://en.wikipedia.org/wiki/Wikimedia_Foundation">Wikimedia Foundation</a></p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Clarkes_on_Belmont.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Clarkes_on_Belmont.jpg/220px-Clarkes_on_Belmont.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/Clarkes_on_Belmont.jpg/330px-Clarkes_on_Belmont.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/42/Clarkes_on_Belmont.jpg/440px-Clarkes_on_Belmont.jpg 2x" alt="" width="220" height="338" data-file-width="2723" data-file-height="4183" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>An advertisement for a diner. Such signs are common on storefronts.</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Advertisingman.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Advertisingman.jpg/220px-Advertisingman.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/43/Advertisingman.jpg/330px-Advertisingman.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/43/Advertisingman.jpg/440px-Advertisingman.jpg 2x" alt="" width="220" height="166" data-file-width="700" data-file-height="527" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Paying people to hold signs is one of the oldest forms of advertising, as with this <a title="Human billboard" href="https://en.wikipedia.org/wiki/Human_billboard">human billboard</a>.</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Hyundai_i40_with_Dalkin_Advertising_operating_under_Comfort_taxis.jpg"></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A taxicab with an advertisement for <a title="Daikin" href="https://en.wikipedia.org/wiki/Daikin">Daikin</a> in Singapore. Buses and other vehicles are popular media for advertisers.</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Mobile_Bicycle_Billboard_from_Singapore,_April_9_2013.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Mobile_Bicycle_Billboard_from_Singapore%2C_April_9_2013.jpg/220px-Mobile_Bicycle_Billboard_from_Singapore%2C_April_9_2013.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/6/6c/Mobile_Bicycle_Billboard_from_Singapore%2C_April_9_2013.jpg 1.5x" alt="" width="220" height="119" data-file-width="300" data-file-height="162" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Mobile Billboard in <a class="mw-redirect" title="East Coast Park, Singapore" href="https://en.wikipedia.org/wiki/East_Coast_Park,_Singapore">East Coast Park, Singapore</a></p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:101_016_DRI_Ingolstadt.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/101_016_DRI_Ingolstadt.jpg/220px-101_016_DRI_Ingolstadt.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/101_016_DRI_Ingolstadt.jpg/330px-101_016_DRI_Ingolstadt.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/101_016_DRI_Ingolstadt.jpg/440px-101_016_DRI_Ingolstadt.jpg 2x" alt="" width="220" height="125" data-file-width="816" data-file-height="464" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A <a class="mw-redirect" title="DBAG Class 101" href="https://en.wikipedia.org/wiki/DBAG_Class_101">DBAG Class 101</a> with <a title="UNICEF" href="https://en.wikipedia.org/wiki/UNICEF">UNICEF</a>ads at Ingolstadt main railway station</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_(Transperth_(Transdev))_(TP1970).jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg/220px-2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg/330px-2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4e/2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg/440px-2008_Volgren_CR228L_on_Mercedes-Benz_OC_500_LE_CNG_%28Transperth_%28Transdev%29%29_%28TP1970%29.jpg 2x" alt="" width="220" height="108" data-file-width="4276" data-file-height="2095" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A <a title="Transperth" href="https://en.wikipedia.org/wiki/Transperth">Transperth</a> bus with an advertisement on its side</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Heissluftballon_over_Uetersen_3493_1.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Heissluftballon_over_Uetersen_3493_1.jpg/220px-Heissluftballon_over_Uetersen_3493_1.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/53/Heissluftballon_over_Uetersen_3493_1.jpg/330px-Heissluftballon_over_Uetersen_3493_1.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/53/Heissluftballon_over_Uetersen_3493_1.jpg/440px-Heissluftballon_over_Uetersen_3493_1.jpg 2x" alt="" width="220" height="161" data-file-width="4086" data-file-height="2997" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p><a title="Hot air balloon" href="https://en.wikipedia.org/wiki/Hot_air_balloon">Hot air balloon</a> displaying advertising for <i><a title="GEO (magazine)" href="https://en.wikipedia.org/wiki/GEO_(magazine)">GEO</a></i> magazine</p>
</div>
</div>
</div>
<p>Advertising may be categorized in a variety of ways, including by style, target audience, geographic scope, medium, or purpose.<sup id="cite_ref-Bovee_2-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Bovee-2">[2]</a></sup><sup class="reference">:9–15</sup> For example, in print advertising, classification by style can include display advertising (ads with design elements sold by size) vs. classified advertising (ads without design elements sold by the word or line). Advertising may be local, national or global. An ad campaign may be directed toward consumers or to businesses. The purpose of an ad may be to raise awareness (brand advertising), or to elicit an immediate sale (direct response advertising). The term <b>above the line</b> (ATL) is used for advertising involving mass media; more targeted forms of advertising and promotion are referred to as <b>below the line</b> (BTL).<sup id="cite_ref-50" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-50">[50]</a></sup><sup id="cite_ref-51" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-51">[51]</a></sup> The two terms date back to 1954 when <a title="Procter &amp; Gamble" href="https://en.wikipedia.org/wiki/Procter_%26_Gamble">Procter &amp; Gamble</a> began paying their advertising agencies differently from other promotional agencies.<sup id="cite_ref-52" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-52">[52]</a></sup> In the 2010s, as advertising technology developed, a new term, <b>through the line</b> (TTL) began to come into use, referring to integrated advertising campaigns.<sup id="cite_ref-53" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-53">[53]</a></sup><sup id="cite_ref-54" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-54">[54]</a></sup></p>
<h3><span id="Traditional_media" class="mw-headline">Traditional media</span></h3>
<p>Virtually any medium can be used for advertising. Commercial advertising media can include <a title="Mural" href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">wall paintings</a>, <a class="mw-redirect" title="Billboards" href="https://en.wikipedia.org/wiki/Billboards">billboards</a>, <a title="Street furniture" href="https://en.wikipedia.org/wiki/Street_furniture">street furniture</a>components, printed flyers and <a title="Rack card" href="https://en.wikipedia.org/wiki/Rack_card">rack cards</a>, radio, cinema and television adverts, <a title="Web banner" href="https://en.wikipedia.org/wiki/Web_banner">web banners</a>, mobile telephone screens, shopping carts, web <a title="Pop-up ad" href="https://en.wikipedia.org/wiki/Pop-up_ad">popups</a>, <a title="Skywriting" href="https://en.wikipedia.org/wiki/Skywriting">skywriting</a>, bus stop benches, <a title="Human billboard" href="https://en.wikipedia.org/wiki/Human_billboard">human billboards</a> and <a title="Forehead advertising" href="https://en.wikipedia.org/wiki/Forehead_advertising">forehead advertising</a>, magazines, newspapers, town criers, sides of buses, banners attached to or sides of airplanes (&#8220;<a title="Logojet" href="https://en.wikipedia.org/wiki/Logojet">logojets</a>&#8220;), <a title="In-flight advertising" href="https://en.wikipedia.org/wiki/In-flight_advertising">in-flight advertisements</a> on <a class="mw-redirect" title="Tray-table" href="https://en.wikipedia.org/wiki/Tray-table">seatback tray tables</a> or overhead storage bins, taxicab doors, roof mounts and <a title="Cabvision" href="https://en.wikipedia.org/wiki/Cabvision">passenger screens</a>, musical stage shows, subway platforms and trains, elastic bands on disposable diapers, doors of bathroom stalls, stickers on apples in supermarkets, <a title="Shopping cart" href="https://en.wikipedia.org/wiki/Shopping_cart">shopping cart handles</a> (grabertising), the opening section of <a title="Streaming media" href="https://en.wikipedia.org/wiki/Streaming_media">streaming</a> audio and video, posters, and the backs of event tickets and supermarket receipts. Any situation in which an &#8220;identified&#8221; sponsor pays to deliver their message through a medium is advertising.<sup id="cite_ref-55" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-55">[55]</a></sup></p>
<table class="wikitable sortable jquery-tablesorter">
<caption>Share of global adspend<sup id="cite_ref-56" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-56">[56]</a></sup></caption>
<thead>
<tr>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">Medium</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">2015</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">2017<sup class="noprint Inline-Template">[<i><a class="mw-redirect" title="Wikipedia:Disputed statement" href="https://en.wikipedia.org/wiki/Wikipedia:Disputed_statement"><span title="This claim has reliable sources with contradicting facts (January 2017)">disputed</span></a> <span class="metadata">– <a title="Talk:Advertising" href="https://en.wikipedia.org/wiki/Talk:Advertising">discuss</a></span></i>]</sup></th>
</tr>
</thead>
<tbody>
<tr>
<td><a title="Television advertisement" href="https://en.wikipedia.org/wiki/Television_advertisement">Television advertisement</a></td>
<td>37.7%</td>
<td>34.8%</td>
</tr>
<tr>
<td>Desktop <a title="Online advertising" href="https://en.wikipedia.org/wiki/Online_advertising">online advertising</a></td>
<td>19.9%</td>
<td>18.2%</td>
</tr>
<tr>
<td><a title="Mobile advertising" href="https://en.wikipedia.org/wiki/Mobile_advertising">Mobile advertising</a></td>
<td>9.2%</td>
<td>18.4%</td>
</tr>
<tr>
<td><a title="Newspaper" href="https://en.wikipedia.org/wiki/Newspaper#Advertising">Newspaper#Advertising</a></td>
<td>12.8%</td>
<td>10.1%</td>
</tr>
<tr>
<td><a title="Magazine" href="https://en.wikipedia.org/wiki/Magazine">Magazines</a></td>
<td>6.5%</td>
<td>5.3%</td>
</tr>
<tr>
<td><a class="mw-redirect" title="Outdoor advertising" href="https://en.wikipedia.org/wiki/Outdoor_advertising">Outdoor advertising</a></td>
<td>6.8%</td>
<td>6.6%</td>
</tr>
<tr>
<td><a title="Radio advertisement" href="https://en.wikipedia.org/wiki/Radio_advertisement">Radio advertisement</a></td>
<td>6.5%</td>
<td>5.9%</td>
</tr>
<tr>
<td><a title="Film industry" href="https://en.wikipedia.org/wiki/Film_industry">Cinema</a></td>
<td>0.6%</td>
<td>0.7%</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<dl>
<dt><a title="Television advertisement" href="https://en.wikipedia.org/wiki/Television_advertisement">Television</a></dt>
<dd>Television advertising is one of the most expensive types of advertising; networks charge large amounts for commercial <a title="Broadcasting" href="https://en.wikipedia.org/wiki/Broadcasting">airtime</a> during popular events. The annual <a title="Super Bowl" href="https://en.wikipedia.org/wiki/Super_Bowl">Super Bowl</a> <a title="American football" href="https://en.wikipedia.org/wiki/American_football">football</a> game in the United States is known as the most prominent advertising event on television – with an audience of over 108 million and studies showing that 50% of those only tuned in to see the advertisements.<sup id="cite_ref-A_Super_Bowl_Ad_Really_Is_Worth_$4_Million_57-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-A_Super_Bowl_Ad_Really_Is_Worth_$4_Million-57">[57]</a></sup><sup id="cite_ref-58" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-58">[58]</a></sup> During the 2014 edition of this game, the average thirty-second ad cost US$4 million, and $8 million was charged for a 60-second spot.<sup id="cite_ref-A_Super_Bowl_Ad_Really_Is_Worth_$4_Million_57-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-A_Super_Bowl_Ad_Really_Is_Worth_$4_Million-57">[57]</a></sup> <a title="Virtual advertising" href="https://en.wikipedia.org/wiki/Virtual_advertising">Virtual advertisements</a> may be inserted into regular programming through computer graphics. It is typically inserted into otherwise blank backdrops<sup id="cite_ref-McCarthy_59-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-McCarthy-59">[59]</a></sup> or used to replace local billboards that are not relevant to the remote broadcast audience.<sup id="cite_ref-Keith_Mcarthur_60-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Keith_Mcarthur-60">[60]</a></sup> More controversially, virtual billboards may be inserted into the background where none exist in real-life. This technique is especially used in televised sporting events. Virtual product placement is also possible.<sup id="cite_ref-61" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-61">[61]</a></sup><sup id="cite_ref-Welcome_to_E-Commerce_Times_62-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Welcome_to_E-Commerce_Times-62">[62]</a></sup> An <a title="Infomercial" href="https://en.wikipedia.org/wiki/Infomercial">infomercial</a> is a long-format television commercial, typically five minutes or longer. The word &#8220;infomercial&#8221; is a <a title="Portmanteau" href="https://en.wikipedia.org/wiki/Portmanteau">portmanteau</a> of the words &#8220;information&#8221; and &#8220;commercial&#8221;. The main objective in an infomercial is to create an <a title="Impulse purchase" href="https://en.wikipedia.org/wiki/Impulse_purchase">impulse purchase</a>, so that the target sees the presentation and then immediately buys the product through the advertised <a title="Toll-free telephone number" href="https://en.wikipedia.org/wiki/Toll-free_telephone_number">toll-free telephone number</a> or website. Infomercials describe, display, and often demonstrate products and their features, and commonly have testimonials from customers and <a class="mw-redirect" title="Advertising professional" href="https://en.wikipedia.org/wiki/Advertising_professional">industry professionals</a>.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Television_commercial_1948.JPG"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Television_commercial_1948.JPG/220px-Television_commercial_1948.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Television_commercial_1948.JPG/330px-Television_commercial_1948.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Television_commercial_1948.JPG/440px-Television_commercial_1948.JPG 2x" alt="" width="220" height="174" data-file-width="1200" data-file-height="947" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A television commercial being filmed in 1948</p>
</div>
</div>
</div>
<dl>
<dt>Radio</dt>
<dd><a title="Radio" href="https://en.wikipedia.org/wiki/Radio">Radio</a> advertisements are broadcast as radio waves to the air from a transmitter to an antenna and a thus to a receiving device. Airtime is purchased from a station or network in exchange for airing the commercials. While radio has the limitation of being restricted to sound, proponents of radio advertising often cite this as an advantage. Radio is an expanding medium that can be found on air, and also online. According to <a class="mw-redirect" title="Arbitron" href="https://en.wikipedia.org/wiki/Arbitron">Arbitron</a>, radio has approximately 241.6 million weekly listeners, or more than 93 percent of the U.S. population.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<dl>
<dt>Online</dt>
<dd>Online advertising is a form of <a title="Promotion (marketing)" href="https://en.wikipedia.org/wiki/Promotion_(marketing)">promotion</a> that uses the Internet and <a title="World Wide Web" href="https://en.wikipedia.org/wiki/World_Wide_Web">World Wide Web</a> for the expressed purpose of delivering marketing messages to attract customers. Online ads are delivered by an ad server. Examples of online advertising include contextual ads that appear on <a title="Search engine results page" href="https://en.wikipedia.org/wiki/Search_engine_results_page">search engine results pages</a>, <a class="mw-redirect" title="Banner ad" href="https://en.wikipedia.org/wiki/Banner_ad">banner ads</a>, in <a class="mw-redirect" title="Pay per click" href="https://en.wikipedia.org/wiki/Pay_per_click">pay per click</a> text ads, <a class="mw-redirect" title="Rich media" href="https://en.wikipedia.org/wiki/Rich_media">rich media</a> ads, <a title="Social network advertising" href="https://en.wikipedia.org/wiki/Social_network_advertising">Social network advertising</a>, <a class="mw-redirect" title="Online classified advertising" href="https://en.wikipedia.org/wiki/Online_classified_advertising">online classified advertising</a>, <a title="Advertising network" href="https://en.wikipedia.org/wiki/Advertising_network">advertising networks</a> and <a class="mw-redirect" title="E-mail marketing" href="https://en.wikipedia.org/wiki/E-mail_marketing">e-mail marketing</a>, including <a class="mw-redirect" title="E-mail spam" href="https://en.wikipedia.org/wiki/E-mail_spam">e-mail spam</a>.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> A newer form of online advertising is <a title="Native advertising" href="https://en.wikipedia.org/wiki/Native_advertising">Native Ads</a>; they go in a website&#8217;s news feed and are supposed to improve user experience by being less intrusive. However, some people argue this practice is deceptive.<sup id="cite_ref-63" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-63">[63]</a></sup></dd>
</dl>
<dl>
<dt>Domain names</dt>
<dd>Domain name advertising is most commonly done through pay per click <a title="Web search engine" href="https://en.wikipedia.org/wiki/Web_search_engine">web search engines</a>, however, advertisers often lease space directly on domain names that generically describe their products. When an Internet user visits a website by typing a domain name directly into their web browser, this is known as &#8220;direct navigation&#8221;, or &#8220;type in&#8221; web traffic. Although many Internet users search for ideas and products using search engines and mobile phones, a large number of users around the world still use the address bar. They will type a keyword into the address bar such as &#8220;geraniums&#8221; and add &#8220;.com&#8221; to the end of it. Sometimes they will do the same with &#8220;.org&#8221; or a country-code Top Level Domain (TLD such as &#8220;.co.uk&#8221; for the United Kingdom or &#8220;.ca&#8221; for Canada). When Internet users type in a generic keyword and add .com or another <a title="Top-level domain" href="https://en.wikipedia.org/wiki/Top-level_domain">top-level domain</a> (TLD) ending, it produces a targeted sales lead.<sup id="cite_ref-targetedtraffic_64-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-targetedtraffic-64">[64]</a></sup> Domain name advertising was originally developed by Oingo (later known as Applied Semantics), one of <a title="Google" href="https://en.wikipedia.org/wiki/Google">Google</a>&#8216;s early acquisitions.<sup id="cite_ref-oingo_65-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-oingo-65">[65]</a></sup></dd>
</dl>
<dl>
<dt>Product placements</dt>
<dd><b><span id="Covert_advertising">Covert advertising</span></b> is when a product or brand is embedded in entertainment and media. For example, in a film, the main character can use an item or other of a definite brand, as in the movie <i><a title="Minority Report (film)" href="https://en.wikipedia.org/wiki/Minority_Report_(film)">Minority Report</a></i>, where <a title="Tom Cruise" href="https://en.wikipedia.org/wiki/Tom_Cruise">Tom Cruise</a>&#8216;s character John Anderton owns a phone with the <i><a title="Nokia" href="https://en.wikipedia.org/wiki/Nokia">Nokia</a></i> logo clearly written in the top corner, or his watch engraved with the <i><a title="Bulgari" href="https://en.wikipedia.org/wiki/Bulgari">Bulgari</a></i> logo. Another example of advertising in film is in <i><a title="I, Robot (film)" href="https://en.wikipedia.org/wiki/I,_Robot_(film)">I, Robot</a></i>, where main character played by <a title="Will Smith" href="https://en.wikipedia.org/wiki/Will_Smith">Will Smith</a> mentions his <i><a title="Converse (shoe company)" href="https://en.wikipedia.org/wiki/Converse_(shoe_company)">Converse</a></i> shoes several times, calling them &#8220;classics&#8221;, because the film is set far in the future. <i>I, Robot</i> and <i><a title="Spaceballs" href="https://en.wikipedia.org/wiki/Spaceballs">Spaceballs</a></i> also showcase futuristic cars with the <i><a title="Audi" href="https://en.wikipedia.org/wiki/Audi">Audi</a></i> and <i><a title="Mercedes-Benz" href="https://en.wikipedia.org/wiki/Mercedes-Benz">Mercedes-Benz</a></i> logos clearly displayed on the front of the vehicles. <a title="Cadillac" href="https://en.wikipedia.org/wiki/Cadillac">Cadillac</a> chose to advertise in the movie <i><a title="The Matrix Reloaded" href="https://en.wikipedia.org/wiki/The_Matrix_Reloaded">The Matrix Reloaded</a></i>, which as a result contained many scenes in which Cadillac cars were used. Similarly, product placement for <a title="Omega SA" href="https://en.wikipedia.org/wiki/Omega_SA">Omega Watches</a>, <a title="Ford Motor Company" href="https://en.wikipedia.org/wiki/Ford_Motor_Company">Ford</a>, <a class="mw-redirect" title="VAIO" href="https://en.wikipedia.org/wiki/VAIO">VAIO</a>, <a title="BMW" href="https://en.wikipedia.org/wiki/BMW">BMW</a> and <a title="Aston Martin" href="https://en.wikipedia.org/wiki/Aston_Martin">Aston Martin</a> cars are featured in recent <a title="James Bond" href="https://en.wikipedia.org/wiki/James_Bond">James Bond</a> films, most notably <i><a title="Casino Royale (2006 film)" href="https://en.wikipedia.org/wiki/Casino_Royale_(2006_film)">Casino Royale</a></i>. In &#8220;<a title="Fantastic Four: Rise of the Silver Surfer" href="https://en.wikipedia.org/wiki/Fantastic_Four:_Rise_of_the_Silver_Surfer">Fantastic Four: Rise of the Silver Surfer</a>&#8220;, the main transport vehicle shows a large <a title="Dodge" href="https://en.wikipedia.org/wiki/Dodge">Dodge</a> logo on the front. <i><a title="Blade Runner" href="https://en.wikipedia.org/wiki/Blade_Runner">Blade Runner</a></i> includes some of the most obvious product placement; the whole film stops to show a <a title="Coca-Cola" href="https://en.wikipedia.org/wiki/Coca-Cola">Coca-Cola</a> billboard.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<dl>
<dt>Print</dt>
<dd><a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">Print</a> advertising describes advertising in a printed medium such as a newspaper, magazine, or trade journal. This encompasses everything from media with a very broad readership base, such as a major national newspaper or magazine, to more narrowly targeted media such as local newspapers and trade journals on very specialized topics. One form of print advertising is <a title="Classified advertising" href="https://en.wikipedia.org/wiki/Classified_advertising">classified advertising</a>, which allows private individuals or companies to purchase a small, narrowly targeted ad paid by the word or line. Another form of print advertising is the display ad, which is generally a larger ad with design elements that typically run in an article section of a newspaper.<sup id="cite_ref-Bovee_2-2" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Bovee-2">[2]</a></sup><sup class="reference">:14</sup></dd>
</dl>
<dl>
<dt>Outdoor</dt>
<dd><a title="Billboard" href="https://en.wikipedia.org/wiki/Billboard">Billboards</a>, also known as hoardings in some parts of the world, are large structures located in public places which display advertisements to passing pedestrians and motorists. Most often, they are located on main roads with a large amount of passing motor and pedestrian traffic; however, they can be placed in any location with large numbers of viewers, such as on mass transit vehicles and in stations, in shopping malls or office buildings, and in stadiums. The form known as street advertising first came to prominence in the UK by Street Advertising Services to create outdoor advertising on street furniture and pavements. Working with products such as <a class="mw-redirect" title="Reverse Graffiti" href="https://en.wikipedia.org/wiki/Reverse_Graffiti">Reverse Graffiti</a>, <a class="mw-redirect" title="Air dancer" href="https://en.wikipedia.org/wiki/Air_dancer">air dancers</a> and 3D pavement advertising, for getting brand messages out into public spaces.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> Sheltered outdoor advertising combines outdoor with indoor advertisement by placing large mobile, structures (<a class="mw-redirect" title="Tents" href="https://en.wikipedia.org/wiki/Tents">tents</a>) in public places on temporary bases. The large outer advertising space aims to exert a strong pull on the observer, the product is promoted indoors, where the creative decor can intensify the impression.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> <a title="Mobile billboard" href="https://en.wikipedia.org/wiki/Mobile_billboard">Mobile billboards</a> are generally vehicle mounted <a title="Billboard" href="https://en.wikipedia.org/wiki/Billboard">billboards</a> or digital screens. These can be on dedicated vehicles built solely for carrying advertisements along routes preselected by clients, they can also be specially equipped cargo trucks or, in some cases, large banners strewn from planes. The billboards are often lighted; some being <a title="Backlight" href="https://en.wikipedia.org/wiki/Backlight">backlit</a>, and others employing spotlights. Some billboard displays are static, while others change; for example, continuously or periodically rotating among a set of advertisements. Mobile displays are used for various situations in metropolitan areas throughout the world, including: target advertising, one-day and long-term campaigns, conventions, sporting events, store openings and similar promotional events, and big advertisements from smaller companies.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Redeye_Sailboat.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Redeye_Sailboat.jpg/220px-Redeye_Sailboat.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Redeye_Sailboat.jpg/330px-Redeye_Sailboat.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/05/Redeye_Sailboat.jpg/440px-Redeye_Sailboat.jpg 2x" alt="" width="220" height="293" data-file-width="2304" data-file-height="3072" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>The <i><a title="RedEye" href="https://en.wikipedia.org/wiki/RedEye">RedEye</a></i> newspaper advertised to its target market at <a class="mw-redirect" title="North Avenue Beach" href="https://en.wikipedia.org/wiki/North_Avenue_Beach">North Avenue Beach</a> with a sailboat billboard on <a title="Lake Michigan" href="https://en.wikipedia.org/wiki/Lake_Michigan">Lake Michigan</a>.</p>
</div>
</div>
</div>
<dl>
<dt>Point-of-sale</dt>
<dd>In-store advertising is any advertisement placed in a retail store. It includes placement of a product in visible locations in a store, such as at eye level, at the ends of aisles and near checkout counters (a.k.a. POP – point of purchase display), eye-catching displays promoting a specific product, and advertisements in such places as shopping carts and in-store video displays.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<dl>
<dt>Novelties</dt>
<dd>Advertising printed on small tangible items such as coffee mugs, T-shirts, pens, bags, and such is known as <a title="Novelty item" href="https://en.wikipedia.org/wiki/Novelty_item">novelty advertising</a>. Some printers specialize in printing novelty items, which can then be distributed directly by the advertiser, or items may be distributed as part of a cross-promotion, such as ads on fast food containers.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (January 2017)">citation needed</span></a></i>]</sup></dd>
</dl>
<dl>
<dt>Celebrity endorsements</dt>
<dd>Advertising in which a celebrity endorses a product or brand leverages celebrity power, fame, money, popularity to gain recognition for their products or to promote specific stores&#8217; or products. Advertisers often advertise their products, for example, when celebrities share their favorite products or wear clothes by specific brands or designers. Celebrities are often involved in advertising campaigns such as television or print adverts to advertise specific or general products. The use of celebrities to endorse a brand can have its downsides, however; one mistake by a celebrity can be detrimental to the <a title="Public relations" href="https://en.wikipedia.org/wiki/Public_relations">public relations</a> of a brand. For example, following his performance of eight gold medals at the 2008 Olympic Games in Beijing, China, swimmer <a title="Michael Phelps" href="https://en.wikipedia.org/wiki/Michael_Phelps">Michael Phelps</a>&#8216; contract with <a title="Kellogg's" href="https://en.wikipedia.org/wiki/Kellogg%27s">Kellogg&#8217;s</a> was terminated, as Kellogg&#8217;s did not want to associate with him after he was photographed smoking marijuana.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> Celebrities such as <a title="Britney Spears" href="https://en.wikipedia.org/wiki/Britney_Spears">Britney Spears</a> have advertised for multiple products including Pepsi, Candies from Kohl&#8217;s, Twister, NASCAR, and Toyota.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<dl>
<dt><a title="Aerial advertising" href="https://en.wikipedia.org/wiki/Aerial_advertising">Aerial</a></dt>
<dd>Using aircraft, <a class="mw-redirect" title="Balloon (aircraft)" href="https://en.wikipedia.org/wiki/Balloon_(aircraft)">balloons</a> or <a title="Airship" href="https://en.wikipedia.org/wiki/Airship">airships</a> to create or display advertising media. <a title="Skywriting" href="https://en.wikipedia.org/wiki/Skywriting">Skywriting</a> is a notable example.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></dd>
</dl>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Allegiant_blueman_md80_(cropped).jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Allegiant_blueman_md80_%28cropped%29.jpg/220px-Allegiant_blueman_md80_%28cropped%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Allegiant_blueman_md80_%28cropped%29.jpg/330px-Allegiant_blueman_md80_%28cropped%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Allegiant_blueman_md80_%28cropped%29.jpg/440px-Allegiant_blueman_md80_%28cropped%29.jpg 2x" alt="" width="220" height="88" data-file-width="1353" data-file-height="540" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>An <a title="Allegiant Air" href="https://en.wikipedia.org/wiki/Allegiant_Air">Allegiant Air</a> aircraft in the special <a title="Blue Man Group" href="https://en.wikipedia.org/wiki/Blue_Man_Group">Blue Man Group</a> livery</p>
</div>
</div>
</div>
<h3><span id="New_media_and_advertising_approaches" class="mw-headline">New media and advertising approaches</span></h3>
<p>A new advertising approach is known as advanced advertising, which is <a title="Data" href="https://en.wikipedia.org/wiki/Data">data</a>-driven advertising, using large quantities of data, precise measuring tools and precise targeting.<sup id="cite_ref-66" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-66">[66]</a></sup> Advanced advertising also makes it easier for companies which sell ad-space to attribute customer purchases to the ads they display or broadcast.<sup id="cite_ref-67" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-67">[67]</a></sup></p>
<p>Increasingly, other media are overtaking many of the &#8220;traditional&#8221; media such as television, radio and newspaper because of a shift toward the usage of the Internet for news and music as well as devices like <a class="mw-redirect" title="Digital video recorders" href="https://en.wikipedia.org/wiki/Digital_video_recorders">digital video recorders</a> (DVRs) such as <a title="TiVo" href="https://en.wikipedia.org/wiki/TiVo">TiVo</a>.<sup id="cite_ref-68" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-68">[68]</a></sup></p>
<p>Online advertising began with unsolicited bulk e-mail advertising known as &#8220;<a class="mw-redirect" title="E-mail spam" href="https://en.wikipedia.org/wiki/E-mail_spam">e-mail spam</a>&#8220;. Spam has been a problem for e-mail users since 1978.<sup id="cite_ref-69" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-69">[69]</a></sup> As new online communication channels became available, advertising followed. The first banner ad appeared on the World Wide Web in 1994.<sup id="cite_ref-70" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-70">[70]</a></sup> Prices of Web-based advertising space are dependent on the &#8220;relevance&#8221; of the surrounding web content and the traffic that the website receives.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<p>In online display advertising, display ads generate awareness quickly. Unlike search, which requires someone to be aware of a need, display advertising can drive awareness of something new and without previous knowledge. Display works well for direct response. Display is not only used for generating awareness, it&#8217;s used for direct response campaigns that link to a landing page with a clear &#8216;call to action&#8217;.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<p>As the mobile phone became a new mass medium in 1998 when the first paid downloadable content appeared on mobile phones in Finland,<sup id="cite_ref-71" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-71">[71]</a></sup><sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> <a title="Mobile advertising" href="https://en.wikipedia.org/wiki/Mobile_advertising">mobile advertising</a>followed, also first launched in Finland in 2000.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> By 2007 the value of mobile advertising had reached $2 billion and providers such as <a class="mw-redirect" title="Admob" href="https://en.wikipedia.org/wiki/Admob">Admob</a> delivered billions of mobile ads.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<p>More advanced mobile ads include banner ads, coupons, <a title="Multimedia Messaging Service" href="https://en.wikipedia.org/wiki/Multimedia_Messaging_Service">Multimedia Messaging Service</a> picture and video messages, advergames and various <a title="Engagement marketing" href="https://en.wikipedia.org/wiki/Engagement_marketing">engagement marketing</a> campaigns. A particular feature driving mobile ads is the <a class="mw-redirect" title="2D barcode" href="https://en.wikipedia.org/wiki/2D_barcode">2D barcode</a>, which replaces the need to do any typing of web addresses, and uses the camera feature of modern phones to gain immediate access to web content. 83 percent of Japanese mobile phone users already are active users of 2D barcodes.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (April 2012)">citation needed</span></a></i>]</sup></p>
<p>Some companies have proposed placing messages or corporate logos on the side of booster <a title="Rocket" href="https://en.wikipedia.org/wiki/Rocket">rockets</a> and the <a title="International Space Station" href="https://en.wikipedia.org/wiki/International_Space_Station">International Space Station</a>.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<p>Unpaid advertising (also called &#8220;publicity advertising&#8221;), can include personal recommendations (&#8220;bring a friend&#8221;, &#8220;sell it&#8221;), spreading buzz, or achieving the feat of equating a brand with a common noun (in the United States, &#8220;<a title="Xerox" href="https://en.wikipedia.org/wiki/Xerox">Xerox</a>&#8221; = &#8220;<a title="Photocopier" href="https://en.wikipedia.org/wiki/Photocopier">photocopier</a>&#8220;, &#8220;<a title="Kleenex" href="https://en.wikipedia.org/wiki/Kleenex">Kleenex</a>&#8221; = <a title="Facial tissue" href="https://en.wikipedia.org/wiki/Facial_tissue">tissue</a>, &#8220;<a title="Vaseline" href="https://en.wikipedia.org/wiki/Vaseline">Vaseline</a>&#8221; = <a title="Petroleum jelly" href="https://en.wikipedia.org/wiki/Petroleum_jelly">petroleum jelly</a>, &#8220;<a title="The Hoover Company" href="https://en.wikipedia.org/wiki/The_Hoover_Company">Hoover</a>&#8221; = <a title="Vacuum cleaner" href="https://en.wikipedia.org/wiki/Vacuum_cleaner">vacuum cleaner</a>, and &#8220;<a title="Band-Aid" href="https://en.wikipedia.org/wiki/Band-Aid">Band-Aid</a>&#8221; = <a title="Adhesive bandage" href="https://en.wikipedia.org/wiki/Adhesive_bandage">adhesive bandage</a>). However, some companies<sup class="noprint Inline-Template">[<i><a class="mw-redirect" title="Wikipedia:Avoid weasel words" href="https://en.wikipedia.org/wiki/Wikipedia:Avoid_weasel_words"><span title="The material near this tag possibly uses too vague attribution or weasel words. (December 2014)">which?</span></a></i>]</sup> oppose the use of their brand name to label an object. Equating a brand with a common noun also risks turning that brand into a <a title="Generic trademark" href="https://en.wikipedia.org/wiki/Generic_trademark">generic trademark</a> – turning it into a generic term which means that its legal protection as a trademark is lost.<sup id="cite_ref-72" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-72">[72]</a></sup><sup class="noprint Inline-Template">[<i><a class="mw-redirect" title="Wikipedia:Disputed statement" href="https://en.wikipedia.org/wiki/Wikipedia:Disputed_statement"><span title="This claim has reliable sources with contradicting facts (January 2017)">disputed</span></a> <span class="metadata">– <a title="Talk:Advertising" href="https://en.wikipedia.org/wiki/Talk:Advertising">discuss</a></span></i>]</sup></p>
<p>From time to time, <a class="mw-redirect" title="The CW Television Network" href="https://en.wikipedia.org/wiki/The_CW_Television_Network">The CW Television Network</a> airs short programming breaks called &#8220;Content Wraps&#8221;, to advertise one company&#8217;s product during an entire commercial break. The CW pioneered &#8220;content wraps&#8221; and some products featured were <a title="Herbal Essences" href="https://en.wikipedia.org/wiki/Herbal_Essences">Herbal Essences</a>, <a title="Crest (toothpaste)" href="https://en.wikipedia.org/wiki/Crest_(toothpaste)">Crest</a>, <a title="Guitar Hero II" href="https://en.wikipedia.org/wiki/Guitar_Hero_II">Guitar Hero II</a>, <a title="CoverGirl" href="https://en.wikipedia.org/wiki/CoverGirl">CoverGirl</a>, and recently <a title="Toyota" href="https://en.wikipedia.org/wiki/Toyota">Toyota</a>.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<p>A new promotion concept has appeared, &#8220;ARvertising&#8221;, advertising on <a title="Augmented reality" href="https://en.wikipedia.org/wiki/Augmented_reality">augmented reality</a> technology.<sup id="cite_ref-73" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-73">[73]</a></sup></p>
<p>Controversy exists on the effectiveness of <a class="mw-redirect" title="Subliminal message" href="https://en.wikipedia.org/wiki/Subliminal_message">subliminal advertising</a> (see <a class="mw-redirect" title="Mind control" href="https://en.wikipedia.org/wiki/Mind_control">mind control</a>), and the pervasiveness of mass messages (<a title="Propaganda" href="https://en.wikipedia.org/wiki/Propaganda">propaganda</a>).</p>
<h3><span id="Rise_in_new_media" class="mw-headline">Rise in new media</span></h3>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Naa_newspaper_ad_revenue.svg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Naa_newspaper_ad_revenue.svg/290px-Naa_newspaper_ad_revenue.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/00/Naa_newspaper_ad_revenue.svg/435px-Naa_newspaper_ad_revenue.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/00/Naa_newspaper_ad_revenue.svg/580px-Naa_newspaper_ad_revenue.svg.png 2x" alt="" width="290" height="190" data-file-width="511" data-file-height="335" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>US newspaper advertising revenue, Newspaper Association of America published data<sup id="cite_ref-NAAdata_74-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-NAAdata-74">[74]</a></sup></p>
</div>
</div>
</div>
<p>With the Internet came many new advertising opportunities. Pop-up, <a title="Adobe Flash" href="https://en.wikipedia.org/wiki/Adobe_Flash">Flash</a>, banner, pop-under, <a class="mw-redirect" title="Advergaming" href="https://en.wikipedia.org/wiki/Advergaming">advergaming</a>, and email advertisements (all of which are often unwanted or spam in the case of email) are now commonplace. Particularly since the rise of &#8220;entertaining&#8221; advertising, some people may like an advertisement enough to wish to watch it later or show a friend.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup>In general, the advertising community has not yet made this easy, although some have used the Internet to widely distribute their ads to anyone willing to see or hear them. In the last three quarters of 2009, mobile and Internet advertising grew by 18% and 9% respectively, while older media advertising saw declines: −10.1% (TV), −11.7% (radio), −14.8% (magazines) and −18.7% (newspapers).<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (September 2010)">citation needed</span></a></i>]</sup> Between 2008 and 2014, U.S. newspapers lost more than half their print advertising revenue.<sup id="cite_ref-75" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-75">[75]</a></sup></p>
<h3><span id="Niche_marketing" class="mw-headline">Niche marketing</span></h3>
<p>Another significant trend regarding future of advertising is the growing importance of the <a title="Niche market" href="https://en.wikipedia.org/wiki/Niche_market">niche market</a> using niche or targeted ads. Also brought about by the Internet and the theory of the <a title="Long tail" href="https://en.wikipedia.org/wiki/Long_tail">long tail</a>, advertisers will have an increasing ability to reach specific audiences. In the past, the most efficient way to deliver a message was to blanket the largest <a title="Mass market" href="https://en.wikipedia.org/wiki/Mass_market">mass market</a> audience possible.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> However, usage tracking, customer profiles and the growing popularity of niche content brought about by everything from blogs to social networking sites, provide advertisers with audiences that are smaller but much better defined,<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> leading to ads that are more relevant to viewers and more effective for companies&#8217; marketing products. Among others, <a class="mw-redirect" title="Comcast Spotlight" href="https://en.wikipedia.org/wiki/Comcast_Spotlight">Comcast Spotlight</a> is one such advertiser employing this method in their <a title="Video on demand" href="https://en.wikipedia.org/wiki/Video_on_demand">video on demand</a> menus. These advertisements are targeted to a specific group and can be viewed by anyone wishing to find out more about a particular business or practice, from their home. This causes the viewer to become proactive and actually choose what advertisements they want to view.<sup id="cite_ref-76" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-76">[76]</a></sup> Niche marketing could also be helped by bringing the issue of colour into advertisements. Different colours play major roles when it comes to marketing strategies, for example, seeing the blue can promote a sense of calmness and gives a sense of security which is why many social networks such as Facebook use blue in their logos. <a title="Google AdSense" href="https://en.wikipedia.org/wiki/Google_AdSense">Google AdSense</a> is an example of niche marketing. Google calculates the primary purpose of a website and adjusts ads accordingly; it uses keywords on the page (or even in emails) to find the general ideas of topics disused and places ads that will most likely be clicked on by viewers of the email account or website visitors.</p>
<h3><span id="Crowdsourcing" class="mw-headline">Crowdsourcing</span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Crowdsourcing" href="https://en.wikipedia.org/wiki/Crowdsourcing">Crowdsourcing</a></div>
<p>The concept of crowdsourcing has given way to the trend of <a class="mw-redirect" title="User-generated" href="https://en.wikipedia.org/wiki/User-generated">user-generated</a> advertisements. User-generated ads are created by people, as opposed to an advertising agency or the company themselves, often resulting from brand sponsored advertising competitions. For the 2007 Super Bowl, the Frito-Lays division of <a title="PepsiCo" href="https://en.wikipedia.org/wiki/PepsiCo">PepsiCo</a> held the &#8220;Crash the Super Bowl&#8221; contest, allowing people to create their own <a title="Doritos" href="https://en.wikipedia.org/wiki/Doritos">Doritos</a> commercials.<sup id="cite_ref-Advertising_Age_77-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Advertising_Age-77">[77]</a></sup> <a title="Chevrolet" href="https://en.wikipedia.org/wiki/Chevrolet">Chevrolet</a> held a similar competition for their Tahoe line of SUVs.<sup id="cite_ref-Advertising_Age_77-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Advertising_Age-77">[77]</a></sup> Due to the success of the Doritos user-generated ads in the 2007 Super Bowl, Frito-Lays relaunched the competition for the 2009 and 2010 Super Bowl. The resulting ads were among the most-watched and most-liked Super Bowl ads. In fact, the winning ad that aired in the 2009 Super Bowl was ranked by the <a class="mw-redirect" title="USA Today Super Bowl Ad Meter" href="https://en.wikipedia.org/wiki/USA_Today_Super_Bowl_Ad_Meter">USA Today Super Bowl Ad Meter</a> as the top ad for the year while the winning ads that aired in the 2010 Super Bowl were found by Nielsen&#8217;s BuzzMetrics to be the &#8220;most buzzed-about&#8221;.<sup id="cite_ref-78" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-78">[78]</a></sup><sup id="cite_ref-79" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-79">[79]</a></sup> Another example of companies using crowdsourcing successfully is the beverage company <a title="Jones Soda" href="https://en.wikipedia.org/wiki/Jones_Soda">Jones Soda</a> that encourages consumers to participate in the label design themselves.<sup id="cite_ref-80" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-80">[80]</a></sup></p>
<p>This trend has given rise to several online platforms that host user-generated advertising competitions on behalf of a company. Founded in 2007, Zooppa has launched ad competitions for brands such as Google, <a title="Nike, Inc." href="https://en.wikipedia.org/wiki/Nike,_Inc.">Nike</a>, <a title="The Hershey Company" href="https://en.wikipedia.org/wiki/The_Hershey_Company">Hershey&#8217;s</a>, <a title="General Mills" href="https://en.wikipedia.org/wiki/General_Mills">General Mills</a>, <a title="Microsoft" href="https://en.wikipedia.org/wiki/Microsoft">Microsoft</a>, <a class="mw-redirect" title="NBC Universal" href="https://en.wikipedia.org/wiki/NBC_Universal">NBC Universal</a>, Zinio, and <a title="Mini Cooper" href="https://en.wikipedia.org/wiki/Mini_Cooper">Mini Cooper</a>.<sup id="cite_ref-81" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-81">[81]</a></sup> Crowdsourcing remains controversial, as the long-term impact on the advertising industry is still unclear.<sup id="cite_ref-82" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-82">[82]</a></sup></p>
<h3><span id="Global_advertising" class="mw-headline">Global advertising</span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Global marketing" href="https://en.wikipedia.org/wiki/Global_marketing">Global marketing</a></div>
<p>Advertising has gone through five major stages of development: domestic, export, international, multi-national, and global. For <a title="Global marketing" href="https://en.wikipedia.org/wiki/Global_marketing">global advertisers</a>, there are four, potentially competing, business objectives that must be balanced when developing worldwide advertising: building a brand while speaking with one voice, developing <a title="Economies of scale" href="https://en.wikipedia.org/wiki/Economies_of_scale">economies of scale</a> in the creative process, maximising local effectiveness of ads, and increasing the company&#8217;s speed of implementation. Born from the evolutionary stages of global marketing are the three primary and fundamentally different approaches to the development of global advertising executions: exporting executions, producing local executions, and importing ideas that travel.<sup id="cite_ref-83" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-83">[83]</a></sup></p>
<p>Advertising research is key to determining the success of an ad in any country or region. The ability to identify which elements and/or moments of an ad contribute to its success is how <a title="Economies of scale" href="https://en.wikipedia.org/wiki/Economies_of_scale">economies of scale</a> are maximized. Once one knows what works in an ad, that idea or ideas can be imported by any other market. <a title="Market research" href="https://en.wikipedia.org/wiki/Market_research">Market research</a> measures, such as Flow of Attention, Flow of Emotion and branding moments provide insight into what is working in an ad in any country or region because the measures are based on the visual, not verbal, elements of the ad.<sup id="cite_ref-84" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-84">[84]</a></sup></p>
<h3><span id="Foreign_public_messaging" class="mw-headline">Foreign public messaging</span></h3>
<div class="hatnote navigation-not-searchable" role="note">See also: <a title="Soft power" href="https://en.wikipedia.org/wiki/Soft_power">Soft power</a> and <a title="International tourism advertising" href="https://en.wikipedia.org/wiki/International_tourism_advertising">International tourism advertising</a></div>
<p>Foreign governments,<sup class="noprint Inline-Template">[<i><a class="mw-redirect" title="Wikipedia:Avoid weasel words" href="https://en.wikipedia.org/wiki/Wikipedia:Avoid_weasel_words"><span title="The material near this tag possibly uses too vague attribution or weasel words. (December 2014)">which?</span></a></i>]</sup> particularly those that own marketable commercial products or services, often promote their interests and positions through the advertising of those goods because the target audience is not only largely unaware of the forum as a vehicle for foreign messaging but also willing to receive the message while in a mental state of absorbing information from advertisements during television commercial breaks, while reading a periodical, or while passing by billboards in public spaces. A prime example of this messaging technique is advertising campaigns to promote international travel. While advertising foreign destinations and services may stem from the typical goal of increasing revenue by drawing more tourism, some travel campaigns carry the additional or alternative intended purpose of promoting good sentiments or improving existing ones among the target audience towards a given nation or region. It is common for advertising promoting foreign countries to be produced and distributed by the tourism ministries of those countries, so these ads often carry political statements and/or depictions of the foreign government&#8217;s <a title="Perception management" href="https://en.wikipedia.org/wiki/Perception_management">desired international public perception</a>. Additionally, a wide range of foreign airlines and travel-related services which advertise separately from the destinations, themselves, are owned by their respective governments; examples include, though are not limited to, the <a title="Emirates (airline)" href="https://en.wikipedia.org/wiki/Emirates_(airline)">Emirates airline</a> (<a title="Dubai" href="https://en.wikipedia.org/wiki/Dubai">Dubai</a>), <a title="Singapore Airlines" href="https://en.wikipedia.org/wiki/Singapore_Airlines">Singapore Airlines</a> (Singapore), <a title="Qatar Airways" href="https://en.wikipedia.org/wiki/Qatar_Airways">Qatar Airways</a> (<a title="Qatar" href="https://en.wikipedia.org/wiki/Qatar">Qatar</a>), <a title="China Airlines" href="https://en.wikipedia.org/wiki/China_Airlines">China Airlines</a> (<a title="Taiwan" href="https://en.wikipedia.org/wiki/Taiwan">Taiwan</a>/<a class="mw-redirect" title="Republic of China" href="https://en.wikipedia.org/wiki/Republic_of_China">Republic of China</a>), and <a title="Air China" href="https://en.wikipedia.org/wiki/Air_China">Air China</a> (People&#8217;s Republic of China). By depicting their destinations, airlines, and other services in a favorable and pleasant light, countries market themselves to populations abroad in a manner that could mitigate prior public impressions.</p>
<h3><span id="Diversification" class="mw-headline">Diversification</span></h3>
<p>In the realm of <a class="mw-redirect" title="Advertising agencies" href="https://en.wikipedia.org/wiki/Advertising_agencies">advertising agencies</a>, continued industry diversification has seen observers note that &#8220;big global clients don&#8217;t need big global agencies any more&#8221;.<sup id="cite_ref-85" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-85">[85]</a></sup> This is reflected by the growth of non-traditional agencies in various global markets, such as Canadian business <a class="mw-redirect" title="TAXI (advertising agency)" href="https://en.wikipedia.org/wiki/TAXI_(advertising_agency)">TAXI</a> and <a title="SMART (advertising agency)" href="https://en.wikipedia.org/wiki/SMART_(advertising_agency)">SMART</a> in Australia and has been referred to as &#8220;a revolution in the ad world&#8221;.<sup id="cite_ref-86" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-86">[86]</a></sup></p>
<h3><span id="New_technology" class="mw-headline">New technology</span></h3>
<p>The ability to record shows on <a title="Digital video recorder" href="https://en.wikipedia.org/wiki/Digital_video_recorder">digital video recorders</a> (such as TiVo) allow watchers to record the programs for later viewing, enabling them to fast forward through commercials. Additionally, as more seasons of pre-recorded <a title="Box set" href="https://en.wikipedia.org/wiki/Box_set">box sets</a> are offered for sale of television programs; fewer people watch the shows on TV. However, the fact that these sets are <b>sold</b>, means the company will receive additional profits from these sets.</p>
<p>To counter this effect, a variety of strategies have been employed. Many advertisers have opted for product placement on TV shows like <a class="mw-redirect" title="Survivor (TV series)" href="https://en.wikipedia.org/wiki/Survivor_(TV_series)">Survivor</a>. Other strategies include integrating advertising with internet-connected <a class="mw-redirect" title="EPG" href="https://en.wikipedia.org/wiki/EPG">program guidess</a> (EPGs), advertising on companion devices (like smartphones and tablets) during the show, and creating <a class="mw-redirect" title="Mobile apps" href="https://en.wikipedia.org/wiki/Mobile_apps">mobile apps</a> for TV programs. Additionally, some like brands have opted for <a title="Social television" href="https://en.wikipedia.org/wiki/Social_television">social television</a> sponsorship.<sup id="cite_ref-87" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-87">[87]</a></sup></p>
<p>The emerging technology of <a title="Drone display" href="https://en.wikipedia.org/wiki/Drone_display">drone displays</a> has recently been used for advertising purposes.<sup id="cite_ref-88" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-88">[88]</a></sup></p>
<h3><span id="Advertising_education" class="mw-headline">Advertising education</span></h3>
<p>In recent years there have been several media literacy initiatives, and more specifically concerning advertising, that seek to empower citizens in the face of media advertising campaigns.<sup id="cite_ref-89" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-89">[89]</a></sup></p>
<p><a title="Advertising education" href="https://en.wikipedia.org/wiki/Advertising_education">Advertising education</a> has become popular with bachelor, master and doctorate degrees becoming available in the emphasis.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> A surge in advertising interest is typically attributed to the strong relationship advertising plays in cultural and technological changes, such as the advance of online social networking.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup> A unique model for teaching advertising is the <a title="Student-run advertising agency" href="https://en.wikipedia.org/wiki/Student-run_advertising_agency">student-run advertising agency</a>, where advertising students create campaigns for real companies.<sup id="cite_ref-90" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-90">[90]</a></sup> Organizations such as the <a title="American Advertising Federation" href="https://en.wikipedia.org/wiki/American_Advertising_Federation">American Advertising Federation</a> establish companies with students to create these campaigns.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (December 2014)">citation needed</span></a></i>]</sup></p>
<h2><span id="Purposes" class="mw-headline">Purposes</span></h2>
<p>Advertising is at the front of delivering the proper message to customers and prospective customers. The purpose of advertising is to inform the consumers about their product and convince customers that a company&#8217;s services or products are the best, enhance the image of the company, point out and create a need for products or services, demonstrate new uses for established products, announce new products and programs, reinforce the salespeople&#8217;s individual messages, draw customers to the business, and to hold existing customers.<sup id="cite_ref-91" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-91">[91]</a></sup></p>
<h3><span id="Sales_promotions_and_brand_loyalty" class="mw-headline">Sales promotions and brand loyalty</span></h3>
<p>Sales promotions are another way to advertise. Sales promotions are double purposed because they are used to gather information about what type of customers one draws in and where they are, and to jump start sales. Sales promotions include things like contests and games, sweepstakes, product giveaways, samples coupons, loyalty programs, and discounts. The ultimate goal of sales promotions is to stimulate potential customers to action.<sup id="cite_ref-92" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-92">[92]</a></sup></p>
<h2><span id="Criticisms" class="mw-headline">Criticisms</span></h2>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Criticism of advertising" href="https://en.wikipedia.org/wiki/Criticism_of_advertising">Criticism of advertising</a></div>
<div class="hatnote navigation-not-searchable" role="note">See also: <a title="Racial stereotyping in advertising" href="https://en.wikipedia.org/wiki/Racial_stereotyping_in_advertising">Racial stereotyping in advertising</a></div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Mobstr_-_Visual_Pollution,_London_(5914547783).jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg/220px-Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg/330px-Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg/440px-Mobstr_-_Visual_Pollution%2C_London_%285914547783%29.jpg 2x" alt="" width="220" height="165" data-file-width="3648" data-file-height="2736" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Mobstr &#8211; Visual Pollution, London</p>
</div>
</div>
</div>
<p>While advertising can be seen as necessary for economic growth,<sup id="cite_ref-Leach367_27-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Leach367-27">[27]</a></sup> it is not without social costs. <a class="mw-redirect" title="E-mail spam" href="https://en.wikipedia.org/wiki/E-mail_spam">Unsolicited commercial e-mail</a> and other forms of <a class="mw-redirect" title="Spam (electronic)" href="https://en.wikipedia.org/wiki/Spam_(electronic)">spam</a> have become so prevalent as to have become a major nuisance to users of these services, as well as being a financial burden on <a title="Internet service provider" href="https://en.wikipedia.org/wiki/Internet_service_provider">internet service providers</a>.<sup id="cite_ref-93" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-93">[93]</a></sup> Advertising is increasingly invading public spaces, such as schools, which some critics argue is a form of child exploitation.<sup id="cite_ref-94" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-94">[94]</a></sup> This increasing difficulty in limiting exposure to specific audiences can result in negative backlash for advertisers.<sup id="cite_ref-95" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-95">[95]</a></sup> In tandem with these criticisms, the advertising industry has seen low approval rates in surveys and negative cultural portrayals.<sup id="cite_ref-96" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-96">[96]</a></sup></p>
<p>One of the most controversial criticisms of advertisement in the present day is that of the predominance of advertising of foods high in sugar, fat, and salt specifically to children. Critics claim that food advertisements targeting children are exploitive and are not sufficiently balanced with proper nutritional education to help children understand the consequences of their food choices. Additionally, children may not understand that they are being sold something, and are therefore more impressionable.<sup id="cite_ref-97" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-97">[97]</a></sup> Michelle Obama has criticized large food companies for advertising unhealthy foods largely towards children and has requested that food companies either limit their advertising to children or advertise foods that are more in line with dietary guidelines.<sup id="cite_ref-98" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-98">[98]</a></sup> The other criticisms include the change that are brought by those advertisements on the society and also the deceiving ads that are aired and published by the corporations. <a title="Cosmetic industry" href="https://en.wikipedia.org/wiki/Cosmetic_industry">Cosmetic</a> and <a class="mw-redirect" title="Health industry" href="https://en.wikipedia.org/wiki/Health_industry">health industry</a> are the ones which exploited the highest and created reasons of concern.<sup id="cite_ref-99" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-99">[99]</a></sup></p>
<h2><span id="Regulation" class="mw-headline">Regulation</span></h2>
<p>There have been increasing efforts to protect the public interest by regulating the content and the influence of advertising. Some examples include restrictions for advertising <a title="Alcohol advertising" href="https://en.wikipedia.org/wiki/Alcohol_advertising">alcohol</a>, <a class="mw-redirect" title="Tobacco advertising" href="https://en.wikipedia.org/wiki/Tobacco_advertising">tobacco</a> or <a title="Gambling" href="https://en.wikipedia.org/wiki/Gambling">gambling</a> imposed in many countries, as well as the bans around <a title="Advertising to children" href="https://en.wikipedia.org/wiki/Advertising_to_children">advertising to children</a>, which exist in parts of Europe. Advertising regulation focuses heavily on the <a title="False advertising" href="https://en.wikipedia.org/wiki/False_advertising">veracity</a> of the claims and as such, there are often tighter restrictions placed around advertisements for food and healthcare products.<sup id="cite_ref-UK_advertising_100-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-UK_advertising-100">[100]</a></sup></p>
<p>The advertising industries within some countries rely less on laws and more on systems of self-regulation.<sup id="cite_ref-UK_advertising_100-1" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-UK_advertising-100">[100]</a></sup><sup id="cite_ref-101" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-101">[101]</a></sup><sup id="cite_ref-asasa_102-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-asasa-102">[102]</a></sup> Advertisers and the media agree on a code of advertising standards that they attempt to uphold. The general aim of such codes is to ensure that any advertising is &#8216;legal, decent, honest and truthful&#8217;. Some self-regulatory organizations are funded by the industry, but remain independent, with the intent of upholding the standards or codes like the <a title="Advertising Standards Authority (United Kingdom)" href="https://en.wikipedia.org/wiki/Advertising_Standards_Authority_(United_Kingdom)">Advertising Standards Authority</a> in the UK.<sup id="cite_ref-103" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-103">[103]</a></sup></p>
<p>In the UK, most forms of <a class="mw-redirect" title="Outdoor advertising" href="https://en.wikipedia.org/wiki/Outdoor_advertising">outdoor advertising</a> such as the display of billboards is regulated by the UK Town and County Planning system. Currently, the display of an advertisement without consent from the Planning Authority is a criminal offense liable to a fine of £2,500 per offense.<sup id="cite_ref-104" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-104">[104]</a></sup> In the US, many communities believe that many forms of outdoor advertising blight the public realm.<sup id="cite_ref-105" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-105">[105]</a></sup> As long ago as the 1960s in the US there were attempts to ban billboard advertising in the open countryside.<sup id="cite_ref-106" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-106">[106]</a></sup> Cities such as <a title="São Paulo" href="https://en.wikipedia.org/wiki/S%C3%A3o_Paulo">São Paulo</a>have introduced an outright ban<sup id="cite_ref-107" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-107">[107]</a></sup> with London also having specific legislation to control unlawful displays.</p>
<p>Some governments restrict the languages that can be used in advertisements, but advertisers may employ tricks to try avoiding them. In France for instance, advertisers sometimes print English words in bold and French translations in fine print to deal with Article 120 of the 1994 <a title="Toubon Law" href="https://en.wikipedia.org/wiki/Toubon_Law">Toubon Law</a> limiting the use of English.<sup id="cite_ref-108" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-108">[108]</a></sup></p>
<p>The advertising of pricing information is another topic of concern for governments. In the United States for instance, it is common for businesses to only mention the existence and amount of applicable taxes at a later stage of a transaction.<sup id="cite_ref-109" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-109">[109]</a></sup> In Canada and New Zealand, taxes can be listed as separate items, as long as they are quoted up-front.<sup id="cite_ref-110" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-110">[110]</a></sup><sup id="cite_ref-111" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-111">[111]</a></sup> In most other countries, the advertised price must include all applicable taxes, enabling customers to easily know how much it will cost them.<sup id="cite_ref-112" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-112">[112]</a></sup><sup id="cite_ref-113" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-113">[113]</a></sup><sup id="cite_ref-114" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-114">[114]</a></sup></p>
<h2><span id="Theory" class="mw-headline">Theory</span></h2>
<div class="hatnote navigation-not-searchable" role="note">See also: <a title="Advertising management" href="https://en.wikipedia.org/wiki/Advertising_management">Advertising management</a></div>
<h3><span id="Hierarchy-of-effects_models" class="mw-headline">Hierarchy-of-effects models</span></h3>
<div class="hatnote navigation-not-searchable" role="note">See also: <a title="AIDA (marketing)" href="https://en.wikipedia.org/wiki/AIDA_(marketing)">AIDA (marketing)</a></div>
<p>Various competing models of hierarchies of effects attempt to provide a theoretical underpinning to advertising practice.<sup class="noprint Inline-Template">[<i><a title="Wikipedia:Please clarify" href="https://en.wikipedia.org/wiki/Wikipedia:Please_clarify"><span title="which ones? provide details (January 2017)">clarification needed</span></a></i>]</sup><sup id="cite_ref-115" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-115">[115]</a></sup></p>
<ul>
<li>The model of Clow and Baack<sup id="cite_ref-116" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-116">[116]</a></sup> clarifies the objectives of an advertising campaign and for each individual advertisement. The model postulates six steps a buyer moves through when making a purchase:
<ol>
<li>Awareness</li>
<li>Knowledge</li>
<li>Liking</li>
<li>Preference</li>
<li>Conviction</li>
<li>Purchase</li>
</ol>
</li>
<li>Means-end theory suggests that an advertisement should contain a message or means that leads the consumer to a desired end-state.<sup id="cite_ref-117" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-117">[117]</a></sup></li>
<li>Leverage points aim to move the consumer from understanding a product&#8217;s benefits to linking those benefits with personal values.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (January 2017)">citation needed</span></a></i>]</sup></li>
</ul>
<h3><span id="Marketing_mix" class="mw-headline">Marketing mix</span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Marketing mix" href="https://en.wikipedia.org/wiki/Marketing_mix">Marketing mix</a></div>
<p>The <a title="Marketing mix" href="https://en.wikipedia.org/wiki/Marketing_mix">marketing mix</a> was proposed by professor <a title="E. Jerome McCarthy" href="https://en.wikipedia.org/wiki/E._Jerome_McCarthy">E. Jerome McCarthy</a> in the 1960s.<sup id="cite_ref-118" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-118">[118]</a></sup> It consists of four basic elements called the &#8220;<b>four Ps</b>&#8220;. <b>Product</b> is the first P representing the actual product. <b>Price</b> represents the process of determining the value of a product. <b>Place</b> represents the variables of getting the product to the consumer such as distribution channels, market coverage and movement organization. The last P stands for <b>Promotion</b> which is the process of reaching the target <a href="https://xinicomms.com/digital-marketing/">market</a> and convincing them to buy the product.</p>
<p>In the 1990s, the concept of <b>four Cs</b> was introduced as a more customer-driven replacement of four P&#8217;s.<sup id="cite_ref-Business_for_Higher_Awards_119-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Business_for_Higher_Awards-119">[119]</a></sup> There are two theories based on four Cs: Lauterborn&#8217;s four Cs (<i>consumer</i>, <i>cost</i>, <i>communication</i>, <i>convenience</i>) <sup id="cite_ref-Schultz_120-0" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-Schultz-120">[120]</a></sup> and Shimizu&#8217;s four Cs (<i><a title="Commodity" href="https://en.wikipedia.org/wiki/Commodity">commodity</a></i>, <i><a title="Cost" href="https://en.wikipedia.org/wiki/Cost">cost</a></i>, <i><a title="Communication" href="https://en.wikipedia.org/wiki/Communication">communication</a></i>, <i><a title="Marketing channel" href="https://en.wikipedia.org/wiki/Marketing_channel">channel</a></i>) in the <b>7Cs Compass Model</b> (<a title="Co-marketing" href="https://en.wikipedia.org/wiki/Co-marketing">Co-marketing</a>). <a title="Communication" href="https://en.wikipedia.org/wiki/Communication">Communications</a>can include <a href="https://xinicomms.com">advertising</a>, <a title="Sales promotion" href="https://en.wikipedia.org/wiki/Sales_promotion">sales promotion</a>, <a title="Public relations" href="https://en.wikipedia.org/wiki/Public_relations">public relations</a>, <a title="Publicity" href="https://en.wikipedia.org/wiki/Publicity">publicity</a>, <a title="Personal selling" href="https://en.wikipedia.org/wiki/Personal_selling">personal selling</a>, <a title="Corporate identity" href="https://en.wikipedia.org/wiki/Corporate_identity">corporate identity</a>, <a class="mw-redirect" title="Internal communication" href="https://en.wikipedia.org/wiki/Internal_communication">internal communication</a>, <a title="Social networking service" href="https://en.wikipedia.org/wiki/Social_networking_service">SNS</a>, and <a title="Management information system" href="https://en.wikipedia.org/wiki/Management_information_system">MIS</a>.<sup id="cite_ref-121" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-121">[121]</a></sup><sup id="cite_ref-122" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-122">[122]</a></sup><sup id="cite_ref-123" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-123">[123]</a></sup><sup id="cite_ref-124" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-124">[124]</a></sup></p>
<h3><span id="Advertising_research" class="mw-headline">Advertising research</span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Advertising research" href="https://en.wikipedia.org/wiki/Advertising_research">Advertising research</a></div>
<p>Advertising research is a specialized form of research that works to improve the effectiveness and efficiency of advertising. It entails numerous forms of research which employ different methodologies. Advertising research includes pre-testing (also known as <a title="Copy testing" href="https://en.wikipedia.org/wiki/Copy_testing">copy testing</a>) and post-testing of ads and/or campaigns.</p>
<p>Pre-testing includes a wide range of qualitative and quantitative techniques, including: focus groups, in-depth target audience interviews (one-on-one interviews), small-scale quantitative studies and physiological measurement. The goal of these investigations is to better understand how different groups respond to various messages and visual prompts, thereby providing an assessment of how well the advertisement meets its communications goals.<sup id="cite_ref-125" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-125">[125]</a></sup></p>
<p>Post-testing employs many of the same techniques as pre-testing, usually with a focus on understanding the change in awareness or attitude attributable to the advertisement. With the emergence of digital advertising technologies, many firms have begun to continuously post-test ads using real-time data. This may take the form of A/B split-testing or multivariate testing.</p>
<p>Continuous <a title="Ad tracking" href="https://en.wikipedia.org/wiki/Ad_tracking">ad tracking</a> and the <a title="Communicus" href="https://en.wikipedia.org/wiki/Communicus">Communicus</a> System are competing examples of post-testing advertising research types.<sup id="cite_ref-126" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-126">[126]</a></sup></p>
<h3><span id="Semiotics" class="mw-headline">Semiotics</span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Advertising research" href="https://en.wikipedia.org/wiki/Advertising_research">Advertising research</a></div>
<p>Meanings between consumers and marketers depict <a title="Signage" href="https://en.wikipedia.org/wiki/Signage">signs</a> and symbols that are encoded in everyday objects.<sup id="cite_ref-127" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-127">[127]</a></sup> <a title="Semiotics" href="https://en.wikipedia.org/wiki/Semiotics">Semiotics</a> is the study of signs and how they are interpreted. Advertising has many hidden signs and meanings within <a class="mw-redirect" title="Brand names" href="https://en.wikipedia.org/wiki/Brand_names">brand names</a>, <a title="Logos" href="https://en.wikipedia.org/wiki/Logos">logos</a>, package designs, print advertisements, and <a class="mw-redirect" title="Television advertisements" href="https://en.wikipedia.org/wiki/Television_advertisements">television advertisements</a>. Semiotics aims to study and interpret the message being conveyed in (for example) advertisements. Logos and advertisements can be interpreted at two levels – known as the surface level and the underlying level. The surface level uses signs creatively to create an image or personality for a product.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (April 2015)">citation needed</span></a></i>]</sup> These signs can be images, words, fonts, <a title="Color" href="https://en.wikipedia.org/wiki/Color">colors</a>, or slogans. The underlying level is made up of hidden meanings. The combination of images, words, <a title="Color" href="https://en.wikipedia.org/wiki/Color">colors</a>, and slogans must be interpreted by the audience or consumer.<sup id="cite_ref-128" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-128">[128]</a></sup> The &#8220;key to advertising analysis&#8221; is the signifier and the signified. The signifier is the object and the signified is the mental concept.<sup id="cite_ref-129" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-129">[129]</a></sup> A product has a signifier and a signified. The signifier is the color, brand name, logo design, and technology. The signified has two meanings known as denotative and connotative. The denotative meaning is the meaning of the product. A television&#8217;s denotative meaning might be that it is high definition. The connotative meaning is the product&#8217;s deep and hidden meaning. A connotative meaning of a television would be that it is top-of-the-line.<sup id="cite_ref-130" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-130">[130]</a></sup></p>
<p><a title="Apple Inc." href="https://en.wikipedia.org/wiki/Apple_Inc.">Apple&#8217;s</a> commercials<sup class="noprint Inline-Template">[<i><a title="Wikipedia:Manual of Style/Dates and numbers" href="https://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Dates_and_numbers#Chronological_items"><span title="The time period mentioned near this tag is ambiguous. (April 2015)">when?</span></a></i>]</sup> used a black <a title="Silhouette" href="https://en.wikipedia.org/wiki/Silhouette">silhouette</a> of a person that was the age of Apple&#8217;s target market. They placed the silhouette in front of a blue screen so that the picture behind the silhouette could be constantly changing. However, the one thing that stays the same in these ads is that there is music in the background and the silhouette is listening to that music on a white iPod through white headphones. Through advertising, the white color on a set of earphones now signifies that the music device is an iPod. The white color signifies almost all of Apple&#8217;s products.<sup id="cite_ref-131" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-131">[131]</a></sup></p>
<p>The semiotics of <a title="Gender" href="https://en.wikipedia.org/wiki/Gender">gender</a> plays a key influence on the way in which signs are interpreted. When considering <a title="Gender advertisement" href="https://en.wikipedia.org/wiki/Gender_advertisement">gender roles in advertising</a>, individuals are influenced by three categories. Certain characteristics of stimuli may enhance or decrease the elaboration of the message (if the product is perceived as <a class="mw-redirect" title="Feminine" href="https://en.wikipedia.org/wiki/Feminine">feminine</a> or <a class="mw-redirect" title="Masculine" href="https://en.wikipedia.org/wiki/Masculine">masculine</a>). Second, the characteristics of individuals can affect <a title="Attention" href="https://en.wikipedia.org/wiki/Attention">attention</a> and elaboration of the message (<a title="Tradition" href="https://en.wikipedia.org/wiki/Tradition">traditional</a> or non-traditional <a title="Gender role" href="https://en.wikipedia.org/wiki/Gender_role">gender role</a> orientation). Lastly, situational factors may be important to influence the elaboration of the message.<sup id="cite_ref-132" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-132">[132]</a></sup></p>
<p>There are two types of <a class="mw-redirect" title="Marketing communication" href="https://en.wikipedia.org/wiki/Marketing_communication">marketing communication</a> claims-objective and subjective.<sup id="cite_ref-133" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-133">[133]</a></sup> Objective claims stem from the extent to which the claim associates the brand with a tangible product or service feature. For instance, a camera may have auto-focus features. Subjective claims convey emotional, subjective, impressions of intangible aspects of a product or service. They are non-physical features of a product or service that cannot be directly perceived, as they have no physical reality. For instance the <a title="Brochure" href="https://en.wikipedia.org/wiki/Brochure">brochure</a> has a beautiful design.<sup id="cite_ref-134" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-134">[134]</a></sup> <a title="Male" href="https://en.wikipedia.org/wiki/Male">Males</a> tend to respond better to objective marketing-communications claims while <a title="Female" href="https://en.wikipedia.org/wiki/Female">females</a> tend to respond better to subjective <a title="Marketing communications" href="https://en.wikipedia.org/wiki/Marketing_communications">marketing communications</a> claims.<sup id="cite_ref-135" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-135">[135]</a></sup></p>
<p><a class="mw-redirect" title="Voiceover" href="https://en.wikipedia.org/wiki/Voiceover">Voiceovers</a> are commonly used in advertising. Most voiceovers are done by men, with figures of up to 94% having been reported.<sup id="cite_ref-136" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-136">[136]</a></sup> There have been more female voiceovers in recent years,<sup class="noprint Inline-Template">[<i><a title="Wikipedia:Manual of Style/Dates and numbers" href="https://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Dates_and_numbers#Chronological_items"><span title="The time period mentioned near this tag is ambiguous. (April 2015)">when?</span></a></i>]</sup> but mainly for food, household products, and feminine-care products.<sup id="cite_ref-137" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-137">[137]</a></sup></p>
<h2><span id="Gender_effects_in_the_processing_of_advertising" class="mw-headline">Gender effects in the processing of advertising</span></h2>
<p>According to a 1977 study by David Statt, females process information comprehensively, while males process information through heuristic devices such as procedures, methods or strategies for solving <a class="mw-redirect" title="Problem" href="https://en.wikipedia.org/wiki/Problem">problems</a>, which could have an effect on how they interpret advertising.<sup id="cite_ref-138" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-138">[138]</a></sup><sup class="noprint Inline-Template">[<i><a title="Wikipedia:Verifiability" href="https://en.wikipedia.org/wiki/Wikipedia:Verifiability"><span title="Quotation needed from source to verify. (February 2017)">need quotation to verify</span></a></i>]</sup> According to this study, men prefer to have available and apparent cues to interpret the message, whereas females engage in more creative, associative, imagery-laced interpretation. Later research by a Danish team<sup id="cite_ref-139" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-139">[139]</a></sup> found that advertising attempts to persuade men to improve their appearance or performance, whereas its approach to women aims at <a class="mw-redirect mw-disambig" title="Transformation (disambiguation)" href="https://en.wikipedia.org/wiki/Transformation_(disambiguation)">transformation</a> toward an impossible ideal of female presentation. In Paul Suggett&#8217;s article &#8220;The Objectification of Women in Advertising&#8221;<sup id="cite_ref-140" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-140">[140]</a></sup> he discusses the negative impact that these women in advertisements, who are too perfect to be real, have on women, as well as men, in real life. Advertising&#8217;s manipulation of women&#8217;s aspiration to these ideal types as portrayed in film, in erotic art, in advertising, on stage, within music videos, and through other media exposures requires at least a conditioned rejection of female reality, and thereby takes on a highly ideological cast. Studies show that these expectations of women and young girls negatively impact their views about their bodies and appearances. These advertisements are directed towards men. Not everyone agrees: one critic viewed this monologic, gender-specific interpretation of advertising as excessively skewed and politicized.<sup id="cite_ref-141" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-141">[141]</a></sup><sup class="noprint Inline-Template">[<i><a title="Wikipedia:Verifiability" href="https://en.wikipedia.org/wiki/Wikipedia:Verifiability"><span title="Quotation needed from source to verify. (February 2017)">need quotation to verify</span></a></i>]</sup> There are some companies, however, like <a class="mw-redirect" title="Dove Beauties" href="https://en.wikipedia.org/wiki/Dove_Beauties">Dove</a> and <a title="Aerie (American Eagle Outfitters)" href="https://en.wikipedia.org/wiki/Aerie_(American_Eagle_Outfitters)">Aerie</a> that are creating commercials to portray more natural women, with less <a class="mw-redirect" title="Image manipulation" href="https://en.wikipedia.org/wiki/Image_manipulation">post production manipulation</a>, so more women and young girls are able to relate to them.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (August 2018)">citation needed</span></a></i>]</sup></p>
<p>More recent research by Martin (2003) reveals that males and females differ in how they react to advertising depending on their mood at the time of exposure to the ads, and on the affective tone of the advertising. When feeling sad, males prefer happy ads to boost their mood. In contrast, females prefer happy ads when they are feeling happy. The television programs in which ads are embedded influence a viewer&#8217;s mood state.<sup id="cite_ref-142" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-142">[142]</a></sup> Susan Wojcicki, author of the article &#8220;Ads that Empower Women don’t just Break Stereotypes—They’re also Effective&#8221;<sup id="cite_ref-143" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-143">[143]</a></sup> discusses how advertising to women has changed since the first <a title="Barbie" href="https://en.wikipedia.org/wiki/Barbie">Barbie</a> commercial where a little girl tells the doll that, she wants to be just like her. Little girls grow up watching advertisements of scantily clad women advertising things from trucks to burgers, and Wojcicki states that this shows girls that they are either arm candy or eye candy.</p>
<h2><span id="Alternatives" class="mw-headline">Alternatives</span></h2>
<p>Other approaches to <a title="Revenue" href="https://en.wikipedia.org/wiki/Revenue">revenue</a> include <a title="Donation" href="https://en.wikipedia.org/wiki/Donation">donations</a>, <a title="Subscription business model" href="https://en.wikipedia.org/wiki/Subscription_business_model">paid subscriptions</a> and <a title="Microtransaction" href="https://en.wikipedia.org/wiki/Microtransaction">microtransactions</a>. Websites and applications are &#8220;ad-free&#8221; when not using ads at all for revenue. For example, the online encyclopaedia <a title="Wikipedia" href="https://en.wikipedia.org/wiki/Wikipedia">Wikipedia</a> provides free access to its content by receiving funding from charitable <a title="Donation" href="https://en.wikipedia.org/wiki/Donation">donations</a>.<sup id="cite_ref-144" class="reference"><a href="https://en.wikipedia.org/wiki/Advertising#cite_note-144">[144]</a></sup></p>
<h2><span id="See_also" class="mw-headline">See also</span></h2>
<div class="noprint portal plainlist tright" role="navigation" aria-label="Portals">
<ul>
<li><a class="image" href="https://en.wikipedia.org/wiki/File:Emblem-money.svg"><img class="noviewer" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Emblem-money.svg/28px-Emblem-money.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Emblem-money.svg/42px-Emblem-money.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Emblem-money.svg/56px-Emblem-money.svg.png 2x" alt="icon" width="28" height="28" data-file-width="48" data-file-height="48" /></a><a class="mw-redirect" title="Portal:Business and economics" href="https://en.wikipedia.org/wiki/Portal:Business_and_economics">Business and economics portal</a></li>
<li><a class="image" href="https://en.wikipedia.org/wiki/File:Icon_Camera.svg"><img class="noviewer" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Icon_Camera.svg/28px-Icon_Camera.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/43/Icon_Camera.svg/42px-Icon_Camera.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/43/Icon_Camera.svg/56px-Icon_Camera.svg.png 2x" alt="icon" width="28" height="28" data-file-width="55" data-file-height="55" /></a><a class="mw-redirect" title="Portal:Media" href="https://en.wikipedia.org/wiki/Portal:Media">Media portal</a></li>
</ul>
</div>
<div class="div-col columns column-width">
<ul>
<li><a title="Advertisements in schools" href="https://en.wikipedia.org/wiki/Advertisements_in_schools">Advertisements in schools</a></li>
<li><a title="Advertising campaign" href="https://en.wikipedia.org/wiki/Advertising_campaign">Advertising campaign</a></li>
<li><a title="Advertising in biology" href="https://en.wikipedia.org/wiki/Advertising_in_biology">Advertising in biology</a></li>
<li><a title="Advertising management" href="https://en.wikipedia.org/wiki/Advertising_management">Advertising management</a></li>
<li><a title="Advertorial" href="https://en.wikipedia.org/wiki/Advertorial">Advertorial</a></li>
<li><a title="Bibliography of advertising" href="https://en.wikipedia.org/wiki/Bibliography_of_advertising">Bibliography of advertising</a></li>
<li><a title="Branded content" href="https://en.wikipedia.org/wiki/Branded_content">Branded content</a></li>
<li><a title="Co-marketing" href="https://en.wikipedia.org/wiki/Co-marketing">Co-marketing</a></li>
<li><a title="Commercial speech" href="https://en.wikipedia.org/wiki/Commercial_speech">Commercial speech</a></li>
<li><a title="Comparative advertising" href="https://en.wikipedia.org/wiki/Comparative_advertising">Comparative advertising</a></li>
<li><a title="Conquesting" href="https://en.wikipedia.org/wiki/Conquesting">Conquesting</a></li>
<li><a title="Copywriting" href="https://en.wikipedia.org/wiki/Copywriting">Copywriting</a></li>
<li><a title="Demo mode" href="https://en.wikipedia.org/wiki/Demo_mode">Demo mode</a></li>
<li><a title="Direct-to-consumer advertising" href="https://en.wikipedia.org/wiki/Direct-to-consumer_advertising">Direct-to-consumer advertising</a></li>
<li><a title="Family in advertising" href="https://en.wikipedia.org/wiki/Family_in_advertising">Family in advertising</a></li>
<li><a title="Graphic design" href="https://en.wikipedia.org/wiki/Graphic_design">Graphic design</a></li>
<li><a title="History of advertising" href="https://en.wikipedia.org/wiki/History_of_advertising">History of advertising</a></li>
<li><a title="History of advertising in Britain" href="https://en.wikipedia.org/wiki/History_of_advertising_in_Britain">History of advertising in Britain</a></li>
<li><a title="History of Advertising Trust" href="https://en.wikipedia.org/wiki/History_of_Advertising_Trust">History of Advertising Trust</a></li>
<li><a title="Informative advertising" href="https://en.wikipedia.org/wiki/Informative_advertising">Informative advertising</a></li>
<li><a class="mw-redirect" title="Integrated marketing communications" href="https://en.wikipedia.org/wiki/Integrated_marketing_communications">Integrated marketing communications</a></li>
<li><a title="Local advertising" href="https://en.wikipedia.org/wiki/Local_advertising">Local advertising</a></li>
<li><a class="mw-redirect" title="Mad men" href="https://en.wikipedia.org/wiki/Mad_men">Mad men</a></li>
<li><a title="Marketing communications" href="https://en.wikipedia.org/wiki/Marketing_communications">Marketing communications</a></li>
<li><a title="Market overhang" href="https://en.wikipedia.org/wiki/Market_overhang">Market overhang</a></li>
<li><a title="Marketing mix" href="https://en.wikipedia.org/wiki/Marketing_mix">Marketing mix</a></li>
<li><a title="Media planning" href="https://en.wikipedia.org/wiki/Media_planning">Media planning</a></li>
<li><a title="Meta-advertising" href="https://en.wikipedia.org/wiki/Meta-advertising">Meta-advertising</a></li>
<li><a title="Mobile marketing" href="https://en.wikipedia.org/wiki/Mobile_marketing">Mobile marketing</a></li>
<li><a class="mw-redirect" title="Museum of Brands, Packaging and Advertising" href="https://en.wikipedia.org/wiki/Museum_of_Brands,_Packaging_and_Advertising">Museum of Brands, Packaging and Advertising</a></li>
<li><a title="Performance-based advertising" href="https://en.wikipedia.org/wiki/Performance-based_advertising">Performance-based advertising</a></li>
<li><a title="Promotion (marketing)" href="https://en.wikipedia.org/wiki/Promotion_(marketing)">Promotion</a></li>
<li><a title="Promotional mix" href="https://en.wikipedia.org/wiki/Promotional_mix">Promotional mix</a></li>
<li><a class="mw-redirect" title="Senior media creative" href="https://en.wikipedia.org/wiki/Senior_media_creative">Senior media creative</a></li>
<li><a title="Sex in advertising" href="https://en.wikipedia.org/wiki/Sex_in_advertising">Sex in advertising</a></li>
<li><a title="Shock advertising" href="https://en.wikipedia.org/wiki/Shock_advertising">Shock advertising</a></li>
<li><a title="Television advertisement" href="https://en.wikipedia.org/wiki/Television_advertisement">Television advertisement</a></li>
<li><a class="mw-redirect" title="Tobacco advertising" href="https://en.wikipedia.org/wiki/Tobacco_advertising">Tobacco advertising</a></li>
<li><a title="Trade literature" href="https://en.wikipedia.org/wiki/Trade_literature">Trade literature</a></li>
<li><a class="mw-redirect" title="Video commerce" href="https://en.wikipedia.org/wiki/Video_commerce">Video commerce</a></li>
<li><a title="Viral marketing" href="https://en.wikipedia.org/wiki/Viral_marketing">Viral marketing</a></li>
<li><a title="World Federation of Advertisers" href="https://en.wikipedia.org/wiki/World_Federation_of_Advertisers">World Federation of Advertisers</a></li>
</ul>
</div>
<h3><span id="Influential_thinkers_in_advertising_theory_and_practice" class="mw-headline">Influential thinkers in advertising theory and practice</span></h3>
<div class="div-col columns column-width">
<ul>
<li><a title="N. W. Ayer &amp; Son" href="https://en.wikipedia.org/wiki/N._W._Ayer_%26_Son">N. W. Ayer &amp; Son</a> &#8211; probably the first advertising agency to use mass media (i.e. telegraph) in a promotional campaign</li>
<li><a title="Ernest Dichter" href="https://en.wikipedia.org/wiki/Ernest_Dichter">Ernest Dichter</a> &#8211; developed the field of motivational research, used extensively in advertising</li>
<li><a title="E. St. Elmo Lewis" href="https://en.wikipedia.org/wiki/E._St._Elmo_Lewis">E. St. Elmo Lewis</a> &#8211; developed the first hierarchy of effects model (AIDA) used in sales and advertising</li>
<li><a title="Arthur Nielsen" href="https://en.wikipedia.org/wiki/Arthur_Nielsen">Arthur Nielsen</a> &#8211; founded one of the earliest international advertising agencies and developed ratings for radio &amp; TV</li>
<li><a title="David Ogilvy (businessman)" href="https://en.wikipedia.org/wiki/David_Ogilvy_(businessman)">David Ogilvy</a> &#8211; pioneered the positioning concept and advocated of the use of brand image in advertising</li>
<li><a title="Charles Coolidge Parlin" href="https://en.wikipedia.org/wiki/Charles_Coolidge_Parlin">Charles Coolidge Parlin</a> (1872–1942) &#8211; regarded as the pioneer of the use of marketing research in advertising</li>
<li><a title="Rosser Reeves" href="https://en.wikipedia.org/wiki/Rosser_Reeves">Rosser Reeves</a> (1910–1984) &#8211; developed the concept of the unique selling proposition (USP) and advocated the use of repetition in advertising</li>
<li><a title="Al Ries" href="https://en.wikipedia.org/wiki/Al_Ries">Al Ries</a> &#8211; advertising executive, author and credited with coining the term &#8220;positioning&#8221; in the late 1960s</li>
<li><a title="Daniel Starch" href="https://en.wikipedia.org/wiki/Daniel_Starch">Daniel Starch</a> &#8211; developed the Starch score method of measuring print media effectiveness (still in use)</li>
<li><a class="mw-redirect" title="J Walter Thompson" href="https://en.wikipedia.org/wiki/J_Walter_Thompson">J Walter Thompson</a> &#8211; one of the earliest advertising agencies.</li>
</ul>
<h2><span style="color: #ff0000;">We can not talk about Advertising without making a reference to printing and branding</span></h2>
<p>Now Lets check out what Wiki has to say on <a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">Printing</a> on <a href="https://en.wikipedia.org/wiki/Printing">https://en.wikipedia.org/wiki/Printing</a></p>
<p><b>Printing</b> is a process for reproducing text and <a title="Printmaking" href="https://en.wikipedia.org/wiki/Printmaking">images</a> using a master form or template. The earliest non-paper products involving printing include <a title="Cylinder seal" href="https://en.wikipedia.org/wiki/Cylinder_seal">cylinder seals</a> and objects such as the <a title="Cyrus Cylinder" href="https://en.wikipedia.org/wiki/Cyrus_Cylinder">Cyrus Cylinder</a> and the <a title="Cylinders of Nabonidus" href="https://en.wikipedia.org/wiki/Cylinders_of_Nabonidus">Cylinders of Nabonidus</a>. The earliest known form of printing as applied to paper was <a title="Woodblock printing" href="https://en.wikipedia.org/wiki/Woodblock_printing">woodblock printing</a>, which appeared in China before 220 AD.<sup id="cite_ref-cave_1-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-cave-1">[1]</a></sup>Later developments in printing technology include the <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">movable type</a> invented by <a title="Bi Sheng" href="https://en.wikipedia.org/wiki/Bi_Sheng">Bi Sheng</a> around 1040 AD<sup id="cite_ref-Great_Chinese_Inventions_2-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Great_Chinese_Inventions-2">[2]</a></sup> and the <a title="Printing press" href="https://en.wikipedia.org/wiki/Printing_press">printing press</a> invented by <a title="Johannes Gutenberg" href="https://en.wikipedia.org/wiki/Johannes_Gutenberg">Johannes Gutenberg</a> in the 15th century. The technology of printing played a key role in the development of the <a title="Renaissance" href="https://en.wikipedia.org/wiki/Renaissance">Renaissance</a> and the <a class="mw-redirect" title="Scientific revolution" href="https://en.wikipedia.org/wiki/Scientific_revolution">scientific revolution</a>, and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.<sup id="cite_ref-3" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-3">[3]</a></sup></p>
<div id="toc" class="toc">
<p><input id="toctogglecheckbox" class="toctogglecheckbox" role="button" type="checkbox" /></p>
<div class="toctitle" dir="ltr" lang="en">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="https://en.wikipedia.org/wiki/Printing#History"><span class="tocnumber">1</span><span class="toctext">History</span></a>
<ul>
<li class="toclevel-2 tocsection-2"><a href="https://en.wikipedia.org/wiki/Printing#Woodblock_printing"><span class="tocnumber">1.1</span><span class="toctext">Woodblock printing</span></a>
<ul>
<li class="toclevel-3 tocsection-3"><a href="https://en.wikipedia.org/wiki/Printing#In_East_Asia"><span class="tocnumber">1.1.1</span><span class="toctext">In East Asia</span></a></li>
<li class="toclevel-3 tocsection-4"><a href="https://en.wikipedia.org/wiki/Printing#In_the_Middle_East"><span class="tocnumber">1.1.2</span><span class="toctext">In the Middle East</span></a></li>
<li class="toclevel-3 tocsection-5"><a href="https://en.wikipedia.org/wiki/Printing#In_Europe"><span class="tocnumber">1.1.3</span><span class="toctext">In Europe</span></a></li>
</ul>
</li>
<li class="toclevel-2 tocsection-6"><a href="https://en.wikipedia.org/wiki/Printing#Movable-type_printing"><span class="tocnumber">1.2</span><span class="toctext">Movable-type printing</span></a></li>
<li class="toclevel-2 tocsection-7"><a href="https://en.wikipedia.org/wiki/Printing#The_printing_press"><span class="tocnumber">1.3</span><span class="toctext">The printing press</span></a></li>
<li class="toclevel-2 tocsection-8"><a href="https://en.wikipedia.org/wiki/Printing#Rotary_printing_press"><span class="tocnumber">1.4</span><span class="toctext">Rotary printing press</span></a></li>
<li class="toclevel-2 tocsection-9"><a href="https://en.wikipedia.org/wiki/Printing#Printing_capacity"><span class="tocnumber">1.5</span><span class="toctext">Printing capacity</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-10"><a href="https://en.wikipedia.org/wiki/Printing#Conventional_printing_technology"><span class="tocnumber">2</span><span class="toctext">Conventional printing technology</span></a>
<ul>
<li class="toclevel-2 tocsection-11"><a href="https://en.wikipedia.org/wiki/Printing#Letterpress"><span class="tocnumber">2.1</span><span class="toctext">Letterpress</span></a></li>
<li class="toclevel-2 tocsection-12"><a href="https://en.wikipedia.org/wiki/Printing#Offset"><span class="tocnumber">2.2</span><span class="toctext">Offset</span></a></li>
<li class="toclevel-2 tocsection-13"><a href="https://en.wikipedia.org/wiki/Printing#Gravure"><span class="tocnumber">2.3</span><span class="toctext">Gravure</span></a></li>
<li class="toclevel-2 tocsection-14"><a href="https://en.wikipedia.org/wiki/Printing#Flexography"><span class="tocnumber">2.4</span><span class="toctext">Flexography</span></a></li>
<li class="toclevel-2 tocsection-15"><a href="https://en.wikipedia.org/wiki/Printing#Other_printing_techniques"><span class="tocnumber">2.5</span><span class="toctext">Other printing techniques</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-16"><a href="https://en.wikipedia.org/wiki/Printing#Impact_of_German_movable_type_printing_press"><span class="tocnumber">3</span><span class="toctext">Impact of German movable type printing press</span></a>
<ul>
<li class="toclevel-2 tocsection-17"><a href="https://en.wikipedia.org/wiki/Printing#Quantitative_aspects"><span class="tocnumber">3.1</span><span class="toctext">Quantitative aspects</span></a></li>
<li class="toclevel-2 tocsection-18"><a href="https://en.wikipedia.org/wiki/Printing#Religious_impact"><span class="tocnumber">3.2</span><span class="toctext">Religious impact</span></a></li>
<li class="toclevel-2 tocsection-19"><a href="https://en.wikipedia.org/wiki/Printing#Social_impact"><span class="tocnumber">3.3</span><span class="toctext">Social impact</span></a></li>
<li class="toclevel-2 tocsection-20"><a href="https://en.wikipedia.org/wiki/Printing#Educational_Impact"><span class="tocnumber">3.4</span><span class="toctext">Educational Impact</span></a>
<ul>
<li class="toclevel-3 tocsection-21"><a href="https://en.wikipedia.org/wiki/Printing#The_language_of_Scholarship"><span class="tocnumber">3.4.1</span><span class="toctext">The language of Scholarship</span></a></li>
<li class="toclevel-3 tocsection-22"><a href="https://en.wikipedia.org/wiki/Printing#University_Libraries"><span class="tocnumber">3.4.2</span><span class="toctext">University Libraries</span></a></li>
<li class="toclevel-3 tocsection-23"><a href="https://en.wikipedia.org/wiki/Printing#Curriculum"><span class="tocnumber">3.4.3</span><span class="toctext">Curriculum</span></a></li>
</ul>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-24"><a href="https://en.wikipedia.org/wiki/Printing#Comparison_of_printing_methods"><span class="tocnumber">4</span><span class="toctext">Comparison of printing methods</span></a></li>
<li class="toclevel-1 tocsection-25"><a href="https://en.wikipedia.org/wiki/Printing#Digital_printing"><span class="tocnumber">5</span><span class="toctext">Digital printing</span></a></li>
<li class="toclevel-1 tocsection-26"><a href="https://en.wikipedia.org/wiki/Printing#3D_printing"><span class="tocnumber">6</span><span class="toctext">3D printing</span></a></li>
<li class="toclevel-1 tocsection-27"><a href="https://en.wikipedia.org/wiki/Printing#Gang_run_printing"><span class="tocnumber">7</span><span class="toctext">Gang run printing</span></a></li>
<li class="toclevel-1 tocsection-28"><a href="https://en.wikipedia.org/wiki/Printing#Printed_electronics"><span class="tocnumber">8</span><span class="toctext">Printed electronics</span></a></li>
<li class="toclevel-1 tocsection-29"><a href="https://en.wikipedia.org/wiki/Printing#Printing_terminologies"><span class="tocnumber">9</span><span class="toctext">Printing terminologies</span></a></li>
<li class="toclevel-1 tocsection-30"><a href="https://en.wikipedia.org/wiki/Printing#See_also"><span class="tocnumber">10</span><span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-31"><a href="https://en.wikipedia.org/wiki/Printing#References"><span class="tocnumber">11</span><span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-32"><a href="https://en.wikipedia.org/wiki/Printing#Further_reading"><span class="tocnumber">12</span><span class="toctext">Further reading</span></a></li>
<li class="toclevel-1 tocsection-33"><a href="https://en.wikipedia.org/wiki/Printing#External_links"><span class="tocnumber">13</span><span class="toctext">External links</span></a></li>
</ul>
</div>
<h2><span id="History" class="mw-headline">History</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: History" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="History of printing" href="https://en.wikipedia.org/wiki/History_of_printing">History of printing</a></div>
<h3><span id="Woodblock_printing" class="mw-headline">Woodblock printing</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Woodblock printing" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=2">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Woodblock printing" href="https://en.wikipedia.org/wiki/Woodblock_printing">Woodblock printing</a></div>
<p><a title="Woodblock printing" href="https://en.wikipedia.org/wiki/Woodblock_printing">Woodblock printing</a> is a technique for printing text, images or patterns that was used widely throughout East Asia. It originated in China in antiquity as a method of printing on <a class="mw-redirect" title="Textiles" href="https://en.wikipedia.org/wiki/Textiles">textiles</a> and later on paper. As a method of printing on cloth, the earliest surviving examples from China date to before 220 A.D.</p>
<h4><span id="In_East_Asia" class="mw-headline">In East Asia</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: In East Asia" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=3">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<div class="thumb tleft">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Jingangjing.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Jingangjing.jpg/220px-Jingangjing.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Jingangjing.jpg/330px-Jingangjing.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Jingangjing.jpg/440px-Jingangjing.jpg 2x" alt="" width="220" height="154" data-file-width="4917" data-file-height="3438" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>The intricate frontispiece of the <a title="Diamond Sutra" href="https://en.wikipedia.org/wiki/Diamond_Sutra">Diamond Sutra</a> from <a title="Tang dynasty" href="https://en.wikipedia.org/wiki/Tang_dynasty">Tang-dynasty</a>China, 868 AD (<a title="British Library" href="https://en.wikipedia.org/wiki/British_Library">British Library</a>)</p>
</div>
</div>
</div>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="History of printing in East Asia" href="https://en.wikipedia.org/wiki/History_of_printing_in_East_Asia">History of printing in East Asia</a></div>
<p>The earliest surviving woodblock printed fragments are from China. They are of silk printed with flowers in three colours from the Han Dynasty (before 220 A.D.). They are the earliest example of woodblock printing on paper and appeared in the mid-seventh century in China.</p>
<p>By the ninth century, printing on paper had taken off, and the first extant complete printed book containing its date is the <a title="Diamond Sutra" href="https://en.wikipedia.org/wiki/Diamond_Sutra">Diamond Sutra</a> (<a title="British Library" href="https://en.wikipedia.org/wiki/British_Library">British Library</a>) of 868.<sup id="cite_ref-4" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-4">[4]</a></sup> By the tenth century, 400,000 copies of some sutras and pictures were printed, and the Confucian classics were in print. A skilled printer could print up to 2,000 double-page sheets per day.<sup id="cite_ref-Needham_5-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Needham-5">[5]</a></sup></p>
<p>Printing spread early to <a title="Korea" href="https://en.wikipedia.org/wiki/Korea">Korea</a> and Japan, which also used Chinese <a title="Logogram" href="https://en.wikipedia.org/wiki/Logogram">logograms</a>, but the technique was also used in <a title="Turpan" href="https://en.wikipedia.org/wiki/Turpan">Turpan</a> and <a title="Vietnam" href="https://en.wikipedia.org/wiki/Vietnam">Vietnam</a>using a number of other scripts. This technique then spread to Persia and Russia.<sup id="cite_ref-Carter_6-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Carter-6">[6]</a></sup> This technique was transmitted to Europe via the Islamic world, and by around 1400 was being used on paper for <a title="Old master print" href="https://en.wikipedia.org/wiki/Old_master_print">old master prints</a> and <a title="Playing card" href="https://en.wikipedia.org/wiki/Playing_card">playing cards</a>.<sup id="cite_ref-7" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-7">[7]</a></sup> However, Arabs never used this to print the <a title="Quran" href="https://en.wikipedia.org/wiki/Quran">Quran</a> because of the limits imposed by Islamic doctrine.<sup id="cite_ref-Carter_6-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Carter-6">[6]</a></sup></p>
<h4><span id="In_the_Middle_East" class="mw-headline">In the Middle East</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: In the Middle East" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=4">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Block printing, called <i>tarsh</i> in <a class="mw-redirect" title="Arabic language" href="https://en.wikipedia.org/wiki/Arabic_language">Arabic</a>, developed in <a class="mw-redirect" title="History of Arab Egypt" href="https://en.wikipedia.org/wiki/History_of_Arab_Egypt">Arabic Egypt</a> during the ninth and tenth centuries, mostly for prayers and <a title="Amulet" href="https://en.wikipedia.org/wiki/Amulet">amulets</a>. There is some evidence to suggest that these print blocks made from non-wood materials, possibly <a title="Tin" href="https://en.wikipedia.org/wiki/Tin">tin</a>, lead, or clay. The techniques employed are uncertain, however, and they appear to have had very little influence outside of the <a title="Muslim world" href="https://en.wikipedia.org/wiki/Muslim_world">Muslim world</a>. Though Europe adopted woodblock printing from the Muslim world, initially for fabric, the technique of metal block printing remained unknown in Europe. Block printing later went out of use in Islamic Central Asia after movable type printing was introduced from China.<sup id="cite_ref-8" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-8">[8]</a></sup></p>
<h4><span id="In_Europe" class="mw-headline">In Europe</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: In Europe" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=5">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Saint_Christopher_001.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Saint_Christopher_001.jpg/200px-Saint_Christopher_001.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Saint_Christopher_001.jpg/300px-Saint_Christopher_001.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/75/Saint_Christopher_001.jpg/400px-Saint_Christopher_001.jpg 2x" alt="" width="200" height="273" data-file-width="1067" data-file-height="1454" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>The earliest known <a title="Woodcut" href="https://en.wikipedia.org/wiki/Woodcut">woodcut</a>, 1423, <a title="Buxheim" href="https://en.wikipedia.org/wiki/Buxheim">Buxheim</a>, with hand-colouring</p>
</div>
</div>
</div>
<p>Block printing first came to Europe as a method for printing on cloth, where it was common by 1300. Images printed on cloth for religious purposes could be quite large and elaborate. When paper became relatively easily available, around 1400, the technique transferred very quickly to small <a title="Woodcut" href="https://en.wikipedia.org/wiki/Woodcut">woodcut</a> religious images and <a title="Playing card" href="https://en.wikipedia.org/wiki/Playing_card">playing cards</a> printed on paper. These <a title="Old master print" href="https://en.wikipedia.org/wiki/Old_master_print">prints</a> produced in very large numbers from about 1425 onward.</p>
<p>Around the mid-fifteenth-century, <i>block-books</i>, woodcut books with both text and images, usually carved in the same block, emerged as a cheaper alternative to manuscripts and books printed with <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">movable type</a>. These were all short heavily illustrated works, the bestsellers of the day, repeated in many different block-book versions: the <a title="Ars moriendi" href="https://en.wikipedia.org/wiki/Ars_moriendi">Ars moriendi</a> and the <a title="Biblia pauperum" href="https://en.wikipedia.org/wiki/Biblia_pauperum">Biblia pauperum</a> were the most common. There is still some controversy among scholars as to whether their introduction preceded or, the majority view, followed the introduction of <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">movable type</a>, with the range of estimated dates being between about 1440 and 1460.<sup id="cite_ref-9" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-9">[9]</a></sup></p>
<h3><span id="Movable-type_printing" class="mw-headline">Movable-type printing</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Movable-type printing" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=6">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="thumb tleft">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg/200px-%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/48/%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg/300px-%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/48/%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg/400px-%E4%BA%94%E8%B4%AF%E5%AE%9D%E5%8D%B7.jpg 2x" alt="" width="200" height="307" data-file-width="589" data-file-height="904" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Copperplate of 1215–1216 5000 <a title="Cash (currency)" href="https://en.wikipedia.org/wiki/Cash_(currency)">cash</a> paper money with ten bronze movable types</p>
</div>
</div>
</div>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg/220px-Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg/330px-Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg/440px-Korean_book-Jikji-Selected_Teachings_of_Buddhist_Sages_and_Seon_Masters-1377.jpg 2x" alt="" width="220" height="176" data-file-width="500" data-file-height="400" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p><a title="Jikji" href="https://en.wikipedia.org/wiki/Jikji">Jikji</a>, &#8220;Selected Teachings of Buddhist Sages and Son Masters&#8221; from Korea, the earliest known book printed with movable metal type, 1377. <a class="mw-redirect" title="Bibliothèque Nationale de France" href="https://en.wikipedia.org/wiki/Biblioth%C3%A8que_Nationale_de_France">Bibliothèque Nationale de France</a>, Paris</p>
</div>
</div>
</div>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">Movable type</a></div>
<div class="hatnote navigation-not-searchable" role="note">See also: <a title="History of Western typography" href="https://en.wikipedia.org/wiki/History_of_Western_typography">History of Western typography</a></div>
<p><b>Movable type</b> is the system of printing and <a title="Typography" href="https://en.wikipedia.org/wiki/Typography">typography</a> using movable pieces of metal type, made by casting from <a title="Matrix (printing)" href="https://en.wikipedia.org/wiki/Matrix_(printing)">matrices</a> struck by <a title="Punchcutting" href="https://en.wikipedia.org/wiki/Punchcutting">letterpunches</a>. <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">Movable type</a> allowed for much more flexible processes than hand copying or block printing.</p>
<p>Around 1040, the first known movable type system was created in China by <a title="Bi Sheng" href="https://en.wikipedia.org/wiki/Bi_Sheng">Bi Sheng</a> out of <a title="Porcelain" href="https://en.wikipedia.org/wiki/Porcelain">porcelain</a>.<sup id="cite_ref-Great_Chinese_Inventions_2-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Great_Chinese_Inventions-2">[2]</a></sup>Bi Sheng used clay type, which broke easily, but <a class="mw-redirect" title="Wang Zhen (official)" href="https://en.wikipedia.org/wiki/Wang_Zhen_(official)">Wang Zhen</a> by 1298 had carved a more durable type from wood. He also developed a complex system of revolving tables and number-association with written Chinese characters that made typesetting and printing more efficient. Still, the main method in use there remained woodblock printing (xylography), which &#8220;proved to be cheaper and more efficient for printing Chinese, with its thousands of characters&#8221;.<sup id="cite_ref-10" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-10">[10]</a></sup></p>
<p>Copper movable type printing originated in China at the beginning of the 12th century. It was used in large-scale printing of <a class="mw-redirect" title="Paper money" href="https://en.wikipedia.org/wiki/Paper_money">paper money</a> issued by the Northern Song dynasty. Movable type spread to Korea during the <a title="Goryeo" href="https://en.wikipedia.org/wiki/Goryeo">Goryeo</a> dynasty.</p>
<p>Around 1230, Koreans invented a metal type movable printing using bronze. The <a title="Jikji" href="https://en.wikipedia.org/wiki/Jikji">Jikji</a>, published in 1377, is the earliest known metal printed book. Type-casting was used, adapted from the method of casting coins. The character was cut in beech wood, which was then pressed into a soft clay to form a mould, and bronze poured into the mould, and finally the type was polished.<sup id="cite_ref-11" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-11">[11]</a></sup> The Korean form of metal movable type was described by the French scholar Henri-Jean Martin as &#8220;extremely similar to Gutenberg&#8217;s&#8221;.<sup id="cite_ref-12" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-12">[12]</a></sup> Eastern metal movable type was spread to Europe between the late 14th century and the early 15th century.<sup id="cite_ref-Carter_6-2" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Carter-6">[6]</a></sup><sup id="cite_ref-meggs58-69_13-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-meggs58-69-13">[13]</a></sup><sup id="cite_ref-14" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-14">[14]</a></sup><sup id="cite_ref-15" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-15">[15]</a></sup><sup id="cite_ref-16" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-16">[16]</a></sup></p>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Metal_movable_type.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Metal_movable_type.jpg/220px-Metal_movable_type.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Metal_movable_type.jpg/330px-Metal_movable_type.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Metal_movable_type.jpg/440px-Metal_movable_type.jpg 2x" alt="" width="220" height="146" data-file-width="2288" data-file-height="1520" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>A case of cast metal type pieces and typeset matter in a composing stick</p>
</div>
</div>
</div>
<h3><span id="The_printing_press" class="mw-headline">The printing press</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: The printing press" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=7">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Printing press" href="https://en.wikipedia.org/wiki/Printing_press">Printing press</a></div>
<p>Around 1450, <a title="Johannes Gutenberg" href="https://en.wikipedia.org/wiki/Johannes_Gutenberg">Johannes Gutenberg</a> introduced the first movable type printing system in Europe. He advanced innovations in casting type based on a matrix and <a title="Hand mould" href="https://en.wikipedia.org/wiki/Hand_mould">hand mould</a>, adaptations to the screw-press, the use of an oil-based ink, and the creation of a softer and more absorbent paper.<sup id="cite_ref-17" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-17">[17]</a></sup> Gutenberg was the first to create his type pieces from an alloy of lead, <a title="Tin" href="https://en.wikipedia.org/wiki/Tin">tin</a>, <a title="Antimony" href="https://en.wikipedia.org/wiki/Antimony">antimony</a>, copper and bismuth – the same components still used today.<sup id="cite_ref-18" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-18">[18]</a></sup> Johannes Gutenberg started work on his <a title="Printing press" href="https://en.wikipedia.org/wiki/Printing_press">printing press</a> around 1436, in partnership with Andreas Dritzehen – whom he had previously instructed in gem-cutting – and Andreas Heilmann, the owner of a paper mill.<sup id="cite_ref-meggs58-69_13-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-meggs58-69-13">[13]</a></sup></p>
<p>Compared to <a title="Woodblock printing" href="https://en.wikipedia.org/wiki/Woodblock_printing">woodblock printing</a>, movable type page setting and printing using a press was faster and more durable. Also, the metal type pieces were sturdier and the lettering more uniform, leading to <a title="Typography" href="https://en.wikipedia.org/wiki/Typography">typography</a> and <a title="Font" href="https://en.wikipedia.org/wiki/Font">fonts</a>. The high quality and relatively low price of the <a title="Gutenberg Bible" href="https://en.wikipedia.org/wiki/Gutenberg_Bible">Gutenberg Bible</a> (1455) established the superiority of movable type for Western languages. The printing press rapidly spread across Europe, leading up to the <a title="Renaissance" href="https://en.wikipedia.org/wiki/Renaissance">Renaissance</a>, and later <a class="mw-redirect" title="Spread of the printing press" href="https://en.wikipedia.org/wiki/Spread_of_the_printing_press">all around the world</a>.</p>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_(1).tiff"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff/lossy-page1-220px-Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff/lossy-page1-330px-Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff/lossy-page1-440px-Mikl%C3%B3s_Andor_in_the_page-setting_room_of_Athenaeum_Printing_House_-_cca._1920_%281%29.tiff.jpg 2x" alt="" width="220" height="150" data-file-width="4056" data-file-height="2771" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Page-setting room – c. 1920</p>
</div>
</div>
</div>
<p>Gutenberg&#8217;s innovations in movable type printing have been called the most important invention of the second millennium.<sup id="cite_ref-19" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-19">[19]</a></sup></p>
<h3><span id="Rotary_printing_press" class="mw-headline">Rotary printing press</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Rotary printing press" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=8">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Rotary printing press" href="https://en.wikipedia.org/wiki/Rotary_printing_press">Rotary printing press</a></div>
<p>The <b>rotary printing press</b> was invented by <a title="Richard March Hoe" href="https://en.wikipedia.org/wiki/Richard_March_Hoe">Richard March Hoe</a> in 1843. It uses impressions curved around a cylinder to print on long continuous rolls of paper or other substrates. Rotary drum printing was later significantly improved by <a title="William Bullock (inventor)" href="https://en.wikipedia.org/wiki/William_Bullock_(inventor)">William Bullock</a>.</p>
<h3><span id="Printing_capacity" class="mw-headline">Printing capacity</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Printing capacity" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=9">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The table lists the maximum number of pages which various press designs could print <i>per hour</i>.</p>
<table class="wikitable">
<tbody>
<tr>
<td></td>
<th colspan="2">Hand-operated presses</th>
<th colspan="4">Steam-powered presses</th>
</tr>
<tr>
<th width="10%"></th>
<th width="10%"><a title="Johannes Gutenberg" href="https://en.wikipedia.org/wiki/Johannes_Gutenberg">Gutenberg</a>-style<br />
<small>c. 1600</small></th>
<th width="10%"><a title="Charles Stanhope, 3rd Earl Stanhope" href="https://en.wikipedia.org/wiki/Charles_Stanhope,_3rd_Earl_Stanhope">Stanhope</a> press<br />
<small>c. 1800</small></th>
<th width="10%"><a title="Friedrich Koenig" href="https://en.wikipedia.org/wiki/Friedrich_Koenig">Koenig</a> press<br />
<small>1812</small></th>
<th width="10%">Koenig press<br />
<small>1813</small></th>
<th width="10%">Koenig press<br />
<small>1814</small></th>
<th width="10%">Koenig press<br />
<small>1818</small></th>
</tr>
<tr>
<td>Impressions per hour</td>
<td>200 <sup id="cite_ref-20" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-20">[20]</a></sup></td>
<td>480 <sup id="cite_ref-Bolza_1967,_80_21-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Bolza_1967,_80-21">[21]</a></sup></td>
<td>800 <sup id="cite_ref-22" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-22">[22]</a></sup></td>
<td>1,100 <sup id="cite_ref-23" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-23">[23]</a></sup></td>
<td>2,000 <sup id="cite_ref-Bolza_1967,_88_24-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Bolza_1967,_88-24">[24]</a></sup></td>
<td>2,400 <sup id="cite_ref-Bolza_1967,_88_24-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Bolza_1967,_88-24">[24]</a></sup></td>
</tr>
</tbody>
</table>
<h2><span id="Conventional_printing_technology" class="mw-headline">Conventional printing technology</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Conventional printing technology" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=10">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>All printing process are concerned with two kinds of areas on the final output:</p>
<ol>
<li>Image Area (printing areas)</li>
<li>Non-image Area (non-printing areas)</li>
</ol>
<p>After the information has been prepared for production (the prepress step), each printing process has definitive means of separating the image from the non-image areas.</p>
<p>Conventional printing has four types of process:</p>
<ol>
<li>Planographics, in which the printing and non-printing areas are on the same plane surface and the difference between them is maintained chemically or by physical properties, the examples are: offset lithography, collotype, and screenless printing.</li>
<li>Relief, in which the printing areas are on a plane surface and the non printing areas are below the surface, examples: flexography and letterpress.</li>
<li>Intaglio, in which the non-printing areas are on a plane surface and the printing area are etched or engraved below the surface, examples: steel die engraving, gravure</li>
<li>Porous, in which the printing areas are on fine mesh screens through which ink can penetrate, and the non-printing areas are a stencil over the screen to block the flow of ink in those areas, examples: screen printing, stencil duplicator.</li>
</ol>
<h3><span id="Letterpress" class="mw-headline">Letterpress</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Letterpress" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=11">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg/220px-Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg/330px-Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/22/Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg/440px-Commercial._Le_Samedi_BAnQ_P48S1P03551.jpg 2x" alt="" width="220" height="142" data-file-width="960" data-file-height="621" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Miehle press printing Le Samedi journal. <a title="Montreal" href="https://en.wikipedia.org/wiki/Montreal">Montreal</a>, 1939.</p>
</div>
</div>
</div>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Letterpress printing" href="https://en.wikipedia.org/wiki/Letterpress_printing">Letterpress printing</a></div>
<p><b>Letterpress printing</b> is a technique of <a title="Relief printing" href="https://en.wikipedia.org/wiki/Relief_printing">relief printing</a>. A worker composes and locks <a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">movable type</a> into the bed of a press, <a title="Ink" href="https://en.wikipedia.org/wiki/Ink">inks</a> it, and presses paper against it to transfer the ink from the type which creates an impression on the paper.</p>
<p>Letterpress printing was the normal form of printing text from its invention by <a title="Johannes Gutenberg" href="https://en.wikipedia.org/wiki/Johannes_Gutenberg">Johannes Gutenberg</a> in the mid-15th century and <a title="Global spread of the printing press" href="https://en.wikipedia.org/wiki/Global_spread_of_the_printing_press">remained in wide use for books and other uses</a> until the second half of the 20th century, when <a title="Offset printing" href="https://en.wikipedia.org/wiki/Offset_printing">offset printing</a> was developed. More recently, letterpress printing has seen a revival in an artisanal form.</p>
<h3><span id="Offset" class="mw-headline">Offset</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Offset" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=12">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a class="mw-redirect" title="Offset press" href="https://en.wikipedia.org/wiki/Offset_press">Offset press</a></div>
<p><b>Offset printing</b> is a widely used printing technique. Offset printing is where the inked image is transferred (or &#8220;offset&#8221;) from a plate to a rubber blanket. An offset transfer moves the image to the printing surface. When used in combination with the <a title="Lithography" href="https://en.wikipedia.org/wiki/Lithography">lithographic</a> process, a process based on the repulsion of oil and water; the offset technique employs a flat (planographic) image carrier. So, the image to be printed obtains <a title="Ink" href="https://en.wikipedia.org/wiki/Ink">ink</a> from ink rollers, while the non-printing area attracts a film of water, keeping the non-printing areas ink-free.</p>
<p>Currently, most books and newspapers are printed using the technique of offset lithography.</p>
<h3><span id="Gravure" class="mw-headline">Gravure</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Gravure" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=13">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="Rotogravure" href="https://en.wikipedia.org/wiki/Rotogravure">Rotogravure</a></div>
<p><b>Gravure printing</b> is an <a class="mw-redirect" title="Intaglio printing" href="https://en.wikipedia.org/wiki/Intaglio_printing">intaglio printing</a> technique, where the image being printed is made up of small depressions in the surface of the printing plate. The cells are filled with ink, and the excess is scraped off the surface with a doctor blade. Then a rubber-covered roller presses paper onto the surface of the plate and into contact with the ink in the cells. The printing cylinders are usually made from copper plated steel, which is subsequently chromed, and may be produced by diamond engraving; etching, or <a title="Laser" href="https://en.wikipedia.org/wiki/Laser">laser</a> ablation.</p>
<p>Gravure printing is used for long, high-quality print runs such as magazines, mail-order catalogues, packaging and printing onto fabric and wallpaper. It is also used for printing postage stamps and decorative plastic laminates, such as kitchen worktops.</p>
<h3><span id="Flexography" class="mw-headline">Flexography</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Flexography" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=14">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p><a title="Flexography" href="https://en.wikipedia.org/wiki/Flexography">Flexography</a> is a type of relief printing.The relief plates are typically made from <a title="Photopolymer" href="https://en.wikipedia.org/wiki/Photopolymer">photopolymers</a>. The process is used for flexible packaging, labels, newspapers.In this market it competes with gravure printing by holding 80% of the market in USA, 50% in Europe but only 20% in Asia.<sup id="cite_ref-IzdebskaThomas2015_25-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-IzdebskaThomas2015-25">[25]</a></sup></p>
<h3><span id="Other_printing_techniques" class="mw-headline">Other printing techniques</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Other printing techniques" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=15">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The other significant printing techniques include:</p>
<ul>
<li><a title="Dye-sublimation printer" href="https://en.wikipedia.org/wiki/Dye-sublimation_printer">Dye-sublimation printer</a></li>
<li><a class="mw-redirect" title="Inkjet" href="https://en.wikipedia.org/wiki/Inkjet">Inkjet</a>, used typically to print a small number of books or packaging, and also to print a variety of materials: from high quality papers simulating offset printing, to floor tiles. Inkjet is also used to apply mailing addresses to direct mail pieces</li>
<li><a title="Laser printing" href="https://en.wikipedia.org/wiki/Laser_printing">Laser printing</a> (toner printing) mainly used in offices and for transactional printing (bills, bank documents). Laser printing is commonly used by direct mail companies to create variable data letters or coupons.</li>
<li><a title="Pad printing" href="https://en.wikipedia.org/wiki/Pad_printing">Pad printing</a>, popular for its ability to print on complex three-dimensional surfaces</li>
<li><a class="mw-redirect" title="Relief print" href="https://en.wikipedia.org/wiki/Relief_print">Relief print</a>, mainly used for <a class="mw-redirect" title="Mail-order catalog" href="https://en.wikipedia.org/wiki/Mail-order_catalog">catalogues</a></li>
<li><a class="mw-redirect" title="Screen-printing" href="https://en.wikipedia.org/wiki/Screen-printing">Screen-printing</a> for a variety of applications ranging from T-shirts to floor tiles, and on uneven surfaces</li>
<li><a title="Intaglio (printmaking)" href="https://en.wikipedia.org/wiki/Intaglio_(printmaking)">Intaglio</a>, used mainly for high value documents such as currencies.</li>
<li><a title="Thermal printing" href="https://en.wikipedia.org/wiki/Thermal_printing">Thermal printing</a>, popular in the 1990s for fax printing. Used today for printing labels such as airline baggage tags and individual price labels in supermarket deli counters.</li>
</ul>
<h2><span id="Impact_of_German_movable_type_printing_press" class="mw-headline">Impact of German movable type printing press</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Impact of German movable type printing press" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=16">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h3><span id="Quantitative_aspects" class="mw-headline">Quantitative aspects</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Quantitative aspects" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=17">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:European_Output_of_Printed_Books_ca._1450%E2%80%931800.png"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/European_Output_of_Printed_Books_ca._1450%E2%80%931800.png/220px-European_Output_of_Printed_Books_ca._1450%E2%80%931800.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/European_Output_of_Printed_Books_ca._1450%E2%80%931800.png/330px-European_Output_of_Printed_Books_ca._1450%E2%80%931800.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e4/European_Output_of_Printed_Books_ca._1450%E2%80%931800.png/440px-European_Output_of_Printed_Books_ca._1450%E2%80%931800.png 2x" alt="" width="220" height="187" data-file-width="1121" data-file-height="953" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>European output of books printed by movable type from ca. 1450 to 1800<sup id="cite_ref-Buringh_&amp;_van_Zanden_2009_26-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Buringh_&amp;_van_Zanden_2009-26">[26]</a></sup></p>
</div>
</div>
</div>
<div class="hatnote navigation-not-searchable" role="note">Main article: <a title="History of printing" href="https://en.wikipedia.org/wiki/History_of_printing">History of printing</a></div>
<p>It is estimated that following the innovation of Gutenberg&#8217;s printing press, the European book output rose from a few million to around one billion copies within a span of less than four centuries.<sup id="cite_ref-Buringh_&amp;_van_Zanden_2009_26-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Buringh_&amp;_van_Zanden_2009-26">[26]</a></sup></p>
<h3><span id="Religious_impact" class="mw-headline">Religious impact</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Religious impact" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=18">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p><a title="Samuel Hartlib" href="https://en.wikipedia.org/wiki/Samuel_Hartlib">Samuel Hartlib</a>, who was exiled in <a title="Great Britain" href="https://en.wikipedia.org/wiki/Great_Britain">Britain</a> and enthusiastic about social and cultural reforms, wrote in 1641 that &#8220;the art of printing will so spread knowledge that the common people, knowing their own rights and liberties, will not be governed by way of oppression&#8221;.<sup id="cite_ref-Briggs-Burke_27-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Briggs-Burke-27">[27]</a></sup></p>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:PrintMus_038.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/PrintMus_038.jpg/220px-PrintMus_038.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/PrintMus_038.jpg/330px-PrintMus_038.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c3/PrintMus_038.jpg/440px-PrintMus_038.jpg 2x" alt="" width="220" height="277" data-file-width="1778" data-file-height="2240" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Replica of the Gutenberg press at the <a title="International Printing Museum" href="https://en.wikipedia.org/wiki/International_Printing_Museum">International Printing Museum</a> in Carson, California</p>
</div>
</div>
</div>
<p>In the Muslim world, printing, especially in Arabic scripts, was strongly opposed throughout the <a title="Early modern period" href="https://en.wikipedia.org/wiki/Early_modern_period">early modern period</a>, though sometimes printing in <a class="mw-redirect" title="Hebrew" href="https://en.wikipedia.org/wiki/Hebrew">Hebrew</a> or <a class="mw-redirect" title="Armenian script" href="https://en.wikipedia.org/wiki/Armenian_script">Armenian script</a> was permitted. Thus the first movable type printing in the <a title="Ottoman Empire" href="https://en.wikipedia.org/wiki/Ottoman_Empire">Ottoman Empire</a> was in Hebrew in 1493.<sup id="cite_ref-28" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-28">[28]</a></sup>According to an imperial ambassador to <a title="Istanbul" href="https://en.wikipedia.org/wiki/Istanbul">Istanbul</a> in the middle of the sixteenth century, it was a sin for the <a title="Turkish people" href="https://en.wikipedia.org/wiki/Turkish_people">Turks</a> to print religious books. In 1515, Sultan <a title="Selim I" href="https://en.wikipedia.org/wiki/Selim_I">Selim I</a> issued a decree under which the practice of printing would be punishable by death. At the end of the sixteenth century, Sultan <a title="Murad III" href="https://en.wikipedia.org/wiki/Murad_III">Murad III</a> permitted the sale of non-religious printed books in <a title="Arabic" href="https://en.wikipedia.org/wiki/Arabic">Arabic</a> characters, yet the majority were imported from <a title="Italy" href="https://en.wikipedia.org/wiki/Italy">Italy</a>. <a title="Ibrahim Muteferrika" href="https://en.wikipedia.org/wiki/Ibrahim_Muteferrika">Ibrahim Muteferrika</a> established the first press for printing in Arabic in the Ottoman Empire, against opposition from the calligraphers and parts of the <a title="Ulama" href="https://en.wikipedia.org/wiki/Ulama">Ulama</a>. It operated until 1742, producing altogether seventeen works, all of which were concerned with non-religious, utilitarian matters. Printing did not become common in the Islamic world until the 19th century.<sup id="cite_ref-29" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-29">[29]</a></sup></p>
<p>Jews were banned from German printing <a title="Guild" href="https://en.wikipedia.org/wiki/Guild">guilds</a>; as a result Hebrew printing sprang up in <a title="Italy" href="https://en.wikipedia.org/wiki/Italy">Italy</a>, beginning in 1470 in Rome, then spreading to other cities including Bari, Pisa, Livorno, and Mantua. Local rulers had the authority to grant or revoke licenses to publish Hebrew books,<sup id="cite_ref-nyt2009_30-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-nyt2009-30">[30]</a></sup>and many of those printed during this period carry the words &#8216;con licenza de superiori&#8217; (indicating their printing having been licensed by the censor) on their title pages.</p>
<p>It was thought that the introduction of printing &#8216;would strengthen religion and enhance the power of monarchs.&#8217;<sup id="cite_ref-Meyrowitz41_31-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Meyrowitz41-31">[31]</a></sup> The majority of books were of a religious nature, with the church and crown regulating the content. The consequences of printing &#8216;wrong&#8217; material were extreme. Meyrowitz<sup id="cite_ref-Meyrowitz41_31-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Meyrowitz41-31">[31]</a></sup> used the example of <a title="William Carter (martyr)" href="https://en.wikipedia.org/wiki/William_Carter_(martyr)">William Carter</a> who in 1584 printed a pro-Catholic pamphlet in Protestant-dominated England. The consequence of his action was <a title="Hanging" href="https://en.wikipedia.org/wiki/Hanging">hanging</a>.</p>
<h3><span id="Social_impact" class="mw-headline">Social impact</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Social impact" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=19">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>Print gave a broader range of readers access to knowledge and enabled later generations to build directly on the intellectual achievements of earlier ones without the changes arising within verbal traditions. Print, according to <a title="John Dalberg-Acton, 1st Baron Acton" href="https://en.wikipedia.org/wiki/John_Dalberg-Acton,_1st_Baron_Acton">Acton</a> in his 1895 lecture <i>On the Study of History</i>, gave &#8220;assurance that the work of the <a title="Renaissance" href="https://en.wikipedia.org/wiki/Renaissance">Renaissance</a> would last, that what was written would be accessible to all, that such an occultation of knowledge and ideas as had depressed the <a title="Middle Ages" href="https://en.wikipedia.org/wiki/Middle_Ages">Middle Ages</a> would never recur, that not an idea would be lost&#8221;.<sup id="cite_ref-Briggs-Burke_27-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-Briggs-Burke-27">[27]</a></sup></p>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Press1520.png"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Press1520.png/170px-Press1520.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Press1520.png/255px-Press1520.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Press1520.png/340px-Press1520.png 2x" alt="" width="170" height="247" data-file-width="3764" data-file-height="5459" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Bookprinting in the 16th century</p>
</div>
</div>
</div>
<p>Print was instrumental in changing the social nature of reading.</p>
<p><a title="Elizabeth Eisenstein" href="https://en.wikipedia.org/wiki/Elizabeth_Eisenstein">Elizabeth Eisenstein</a> identifies two long-term effects of the invention of printing. She claims that print created a sustained and uniform reference for knowledge and allowed comparisons of incompatible views.<sup id="cite_ref-32" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-32">[32]</a></sup></p>
<p><a title="Asa Briggs" href="https://en.wikipedia.org/wiki/Asa_Briggs">Asa Briggs</a> and <a title="Peter Burke (historian)" href="https://en.wikipedia.org/wiki/Peter_Burke_(historian)">Peter Burke</a> identify five kinds of reading that developed in relation to the introduction of print:</p>
<ol>
<li>Critical reading: Because texts finally became accessible to the general population, critical reading emerged as people were able to form their own opinions on texts.</li>
<li>Dangerous reading: Reading was seen as a dangerous pursuit because it was considered rebellious and unsociable, especially in the case of women, because reading could stir up dangerous emotions such as love, and if women could read, they could read love notes.</li>
<li>Creative reading: Printing allowed people to read texts and interpret them creatively, often in very different ways than the author intended.</li>
<li>Extensive reading: Once print made a wide range of texts available, earlier habits of intensive reading of texts from start to finish began to change, and people began reading selected excerpts, allowing much more extensive reading on a wider range of topics.</li>
<li>Private reading: Reading was linked to the rise of individualism because, before print, reading was often a group event in which one person would read to a group. With print, both literacy and the availability of texts increased, and solitary reading became the norm.</li>
</ol>
<p>The invention of printing also changed the occupational structure of European cities. <a class="mw-redirect" title="Printer (publisher)" href="https://en.wikipedia.org/wiki/Printer_(publisher)">Printers</a> emerged as a new group of artisans for whom literacy was essential, while the much more labour-intensive occupation of the <a title="Scribe" href="https://en.wikipedia.org/wiki/Scribe">scribe</a> naturally declined. Proof-correcting arose as a new occupation, while a rise in the numbers of <a title="Bookselling" href="https://en.wikipedia.org/wiki/Bookselling">booksellers</a> and librarians naturally followed the explosion in the numbers of books.</p>
<h3><span id="Educational_Impact" class="mw-headline">Educational Impact</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Educational Impact" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=20">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>Gutenberg&#8217;s printing press had profound impacts on universities as well. Universities were influenced in their &#8220;language of scholarship, libraries, curriculum, [and] pedagogy&#8221; <sup id="cite_ref-:0_33-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-:0-33">[33]</a></sup></p>
<h4><span id="The_language_of_Scholarship" class="mw-headline">The language of Scholarship</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: The language of Scholarship" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=21">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Before the invention of the printing press, most written material was in Latin. However, after the invention of printing the number of books printed expanded as well as the vernacular. Latin was not replaced completely, but remained an international language until the eighteenth century.<sup id="cite_ref-:0_33-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-:0-33">[33]</a></sup></p>
<h4><span id="University_Libraries" class="mw-headline">University Libraries</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: University Libraries" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=22">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>At this time, universities began establishing accompanying libraries. &#8220;Cambridge made the chaplain responsible for the library in the fifteenth century but this position was abolished in 1570 and in 1577 Cambridge established the new office of university librarian. Although, the University of Leuven did not see a need for a university library based on the idea that professor were the library. Libraries also began receiving so many books from gifts and purchases that they began to run out of room. This issue was solved, however, by a man named Merton (1589) who decided books should be stacked horizontally on shelves.<sup id="cite_ref-:0_33-2" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-:0-33">[33]</a></sup></p>
<h4><span id="Curriculum" class="mw-headline">Curriculum</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Curriculum" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=23">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>The printed press changed university libraries in many ways. Professors were finally able to compare the opinions of different authors rather than being forced to look at only one or two specific authors. Textbooks themselves were also being printed in different levels of difficulty, rather than just one introductory text being made available.<sup id="cite_ref-:0_33-3" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-:0-33">[33]</a></sup></p>
<h2><span id="Comparison_of_printing_methods" class="mw-headline">Comparison of printing methods</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Comparison of printing methods" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=24">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<table class="wikitable sortable jquery-tablesorter">
<caption>Comparison of printing methods<sup id="cite_ref-kipphan130-144_34-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan130-144-34">[34]</a></sup></caption>
<thead>
<tr>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">Printing process</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">Transfer method</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button"><a title="Pressure" href="https://en.wikipedia.org/wiki/Pressure">Pressure</a>applied</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button"><a title="Drop (liquid)" href="https://en.wikipedia.org/wiki/Drop_(liquid)">Drop size</a></th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button"><a class="mw-redirect" title="Dynamic viscosity" href="https://en.wikipedia.org/wiki/Dynamic_viscosity">Dynamic viscosity</a></th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">Ink thickness on substrate</th>
<th class="unsortable">Notes</th>
<th class="headerSort" tabindex="0" title="Sort ascending" role="columnheader button">Cost-effective run length</th>
</tr>
</thead>
<tbody>
<tr>
<td><a title="Offset printing" href="https://en.wikipedia.org/wiki/Offset_printing">Offset printing</a></td>
<td>rollers</td>
<td>1 MPa</td>
<td></td>
<td>40–100 Pa·s</td>
<td>0.5–1.5 µm</td>
<td>high print quality</td>
<td>&gt;5,000 (<a title="ISO 216" href="https://en.wikipedia.org/wiki/ISO_216">A3 trim size</a>, sheet-fed)<sup id="cite_ref-kipphan976-979_35-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan976-979-35">[35]</a></sup>&gt;30,000 (<a title="ISO 216" href="https://en.wikipedia.org/wiki/ISO_216">A3 trim size</a>, web-fed)<sup id="cite_ref-kipphan976-979_35-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan976-979-35">[35]</a></sup></td>
</tr>
<tr>
<td><a title="Rotogravure" href="https://en.wikipedia.org/wiki/Rotogravure">Rotogravure</a></td>
<td>rollers</td>
<td>3 MPa</td>
<td></td>
<td>50–200 mPa·s</td>
<td>0.8–8 µm</td>
<td>thick ink layers possible,<br />
excellent image reproduction,<br />
edges of letters and lines are jagged<sup id="cite_ref-kipphan48-52_36-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan48-52-36">[36]</a></sup></td>
<td>&gt;500,000<sup id="cite_ref-kipphan48-52_36-1" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan48-52-36">[36]</a></sup></td>
</tr>
<tr>
<td><a title="Flexography" href="https://en.wikipedia.org/wiki/Flexography">Flexography</a></td>
<td>rollers</td>
<td>0.3 MPa</td>
<td></td>
<td>50–500 mPa·s</td>
<td>0.8–2.5 µm</td>
<td>high quality (now HD)</td>
<td></td>
</tr>
<tr>
<td><a title="Letterpress printing" href="https://en.wikipedia.org/wiki/Letterpress_printing">Letterpress printing</a></td>
<td>platen</td>
<td>10 MPa</td>
<td></td>
<td>50–150 Pa·s</td>
<td>0.5–1.5 µm</td>
<td>slow drying</td>
<td></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Screen-printing" href="https://en.wikipedia.org/wiki/Screen-printing">Screen-printing</a></td>
<td>pressing ink through holes in screen</td>
<td></td>
<td></td>
<td></td>
<td>&lt;12 µm</td>
<td>versatile method,<br />
low quality</td>
<td></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Electrophotography" href="https://en.wikipedia.org/wiki/Electrophotography">Electrophotography</a></td>
<td><a title="Electrostatics" href="https://en.wikipedia.org/wiki/Electrostatics">electrostatics</a></td>
<td></td>
<td></td>
<td></td>
<td>5–10 µm</td>
<td>thick ink</td>
<td></td>
</tr>
<tr>
<td>Liquid Electrophotography</td>
<td>image formation by Electrostatics and transfer while fixing</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>High PQ, excellent image reproduction, wide range of media, very thin image</td>
<td></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Inkjet printer" href="https://en.wikipedia.org/wiki/Inkjet_printer">Inkjet printer</a></td>
<td>thermal</td>
<td></td>
<td>5–30 picolitres (pl)</td>
<td>1–5 Pa·s<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (April 2014)">citation needed</span></a></i>]</sup></td>
<td>&lt;0.5 µm</td>
<td>special paper required to reduce bleeding</td>
<td>&lt;350 (<a title="ISO 216" href="https://en.wikipedia.org/wiki/ISO_216">A3 trim size</a>)<sup id="cite_ref-kipphan976-979_35-2" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan976-979-35">[35]</a></sup></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Inkjet printer" href="https://en.wikipedia.org/wiki/Inkjet_printer">Inkjet printer</a></td>
<td>piezoelectric</td>
<td></td>
<td>4–30 pl</td>
<td>5–20 mPa s</td>
<td>&lt;0.5 µm</td>
<td>special paper required to reduce bleeding</td>
<td>&lt;350 (<a title="ISO 216" href="https://en.wikipedia.org/wiki/ISO_216">A3 trim size</a>)<sup id="cite_ref-kipphan976-979_35-3" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan976-979-35">[35]</a></sup></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Inkjet printer" href="https://en.wikipedia.org/wiki/Inkjet_printer">Inkjet printer</a></td>
<td>continuous</td>
<td></td>
<td>5–100 pl</td>
<td>1–5 mPa·s</td>
<td>&lt;0.5 µm</td>
<td>special paper required to reduce bleeding</td>
<td>&lt;350 (<a title="ISO 216" href="https://en.wikipedia.org/wiki/ISO_216">A3 trim size</a>)<sup id="cite_ref-kipphan976-979_35-4" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-kipphan976-979-35">[35]</a></sup></td>
</tr>
<tr>
<td><a class="mw-redirect" title="Transfer-print" href="https://en.wikipedia.org/wiki/Transfer-print">Transfer-print</a></td>
<td>thermal transfer film or water release decal</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>mass-production method of applying an image to a curved or uneven surface</td>
<td></td>
</tr>
</tbody>
</table>
<div class="thumb tright">
<div class="thumbinner">
<p><a class="image" href="https://en.wikipedia.org/wiki/File:Digital_Printer.jpg"><img class="thumbimage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Digital_Printer.jpg/220px-Digital_Printer.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Digital_Printer.jpg/330px-Digital_Printer.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Digital_Printer.jpg/440px-Digital_Printer.jpg 2x" alt="Digital Printer from Design Print Shop" width="220" height="165" data-file-width="4032" data-file-height="3024" /></a></p>
<div class="thumbcaption">
<div class="magnify"></div>
<p>Digital Printers can now not just print leaflets and documents, but also scan, fax, copy and make booklets plus more.</p>
</div>
</div>
</div>
<h2><a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/"><span id="Digital_printing" class="mw-headline">Digital printing</span></a></h2>
<p>By 2005, <a title="Digital printing" href="https://en.wikipedia.org/wiki/Digital_printing">Digital printing</a> accounts for approximately 9% of the 45 trillion pages printed annually around the world.<sup id="cite_ref-vj_ipg2-0_keynote_37-0" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-vj_ipg2-0_keynote-37">[37]</a></sup></p>
<p><a href="https://web.archive.org/web/20210506223718/https://xinicomms.com/branding-printing-logistics/">Printing</a> at home, an office, or an engineering environment is subdivided into:</p>
<ul>
<li>small format (up to ledger size paper sheets), as used in business offices and libraries</li>
<li>wide format (up to 3&#8242; or 914mm wide rolls of paper), as used in drafting and design establishments.</li>
</ul>
<p>Some of the more common printing technologies are:</p>
<ul>
<li><a title="Blueprint" href="https://en.wikipedia.org/wiki/Blueprint">blueprint</a> – and related chemical technologies</li>
<li><a class="mw-redirect" title="Daisy wheel" href="https://en.wikipedia.org/wiki/Daisy_wheel">daisy wheel</a> – where pre-formed characters are applied individually</li>
<li><a title="Dot matrix printer" href="https://en.wikipedia.org/wiki/Dot_matrix_printer">dot-matrix</a> – which produces arbitrary patterns of dots with an array of printing studs</li>
<li><a title="Line printer" href="https://en.wikipedia.org/wiki/Line_printer">line printing</a> – where formed characters are applied to the paper by lines</li>
<li><a class="mw-redirect" title="Thermal printer" href="https://en.wikipedia.org/wiki/Thermal_printer">heat transfer</a> – such as early fax machines or modern receipt printers that apply heat to special paper, which turns black to form the printed image</li>
<li><a class="mw-redirect" title="Inkjet" href="https://en.wikipedia.org/wiki/Inkjet">inkjet</a> – including bubble-jet, where ink is sprayed onto the paper to create the desired image</li>
<li><a class="mw-redirect" title="Electrophotography" href="https://en.wikipedia.org/wiki/Electrophotography">electrophotography</a> – where <a title="Toner" href="https://en.wikipedia.org/wiki/Toner">toner</a> is attracted to a charged image and then developed</li>
<li><a title="Laser printing" href="https://en.wikipedia.org/wiki/Laser_printing">laser</a> – a type of <a title="Xerography" href="https://en.wikipedia.org/wiki/Xerography">xerography</a> where the charged image is written pixel by pixel using a laser</li>
<li><a title="Solid ink" href="https://en.wikipedia.org/wiki/Solid_ink">solid ink</a> printer – where <a title="Cube" href="https://en.wikipedia.org/wiki/Cube">cubes</a> of ink are melted to make ink or liquid toner</li>
</ul>
<p>Vendors typically stress the total cost to operate the equipment, involving complex calculations that include all cost factors involved in the operation as well as the capital equipment costs, amortization, etc. For the most part, toner systems are more economical than inkjet in the long run, even though inkjets are less expensive in the initial purchase price.</p>
<p>Professional <a title="Digital printing" href="https://en.wikipedia.org/wiki/Digital_printing">digital printing</a> (using <a title="Toner" href="https://en.wikipedia.org/wiki/Toner">toner</a>) primarily uses an electrical charge to transfer toner or liquid ink to the substrate onto which it is printed. Digital print quality has steadily improved from early color and black and white copiers to sophisticated colour digital presses such as the Xerox iGen3, the Kodak Nexpress, the HP <a class="mw-redirect" title="Indigo Digital Press" href="https://en.wikipedia.org/wiki/Indigo_Digital_Press">Indigo Digital Press</a> series, and the InfoPrint 5000. The iGen3 and Nexpress use toner particles and the Indigo uses liquid ink. The InfoPrint 5000 is a full-color, continuous forms inkjet drop-on-demand printing system. All handle variable data, and rival offset in quality. Digital offset presses are also called direct imaging presses, although these presses can receive computer files and automatically turn them into print-ready plates, they cannot insert variable data.</p>
<p>Small press and fanzines generally use <a title="Digital printing" href="https://en.wikipedia.org/wiki/Digital_printing">digital printing</a>. Prior to the introduction of cheap photocopying the use of machines such as the <a title="Spirit duplicator" href="https://en.wikipedia.org/wiki/Spirit_duplicator">spirit duplicator</a>, <a title="Hectograph" href="https://en.wikipedia.org/wiki/Hectograph">hectograph</a>, and <a title="Mimeograph" href="https://en.wikipedia.org/wiki/Mimeograph">mimeograph</a> was common.</p>
<h2><span id="3D_printing" class="mw-headline">3D printing</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: 3D printing" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=26">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p><a title="3D printing" href="https://en.wikipedia.org/wiki/3D_printing">3D printing</a> is a form of manufacturing technology where physical objects are created from <a title="3D modeling" href="https://en.wikipedia.org/wiki/3D_modeling">three-dimensional digital models</a> using 3D printers. The objects are created by laying down or building up many thin layers of material in succession. The technique is also known as additive manufacturing, rapid prototyping, or fabricating.<sup class="noprint Inline-Template Template-Fact">[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed"><span title="This claim needs references to reliable sources. (April 2017)">citation needed</span></a></i>]</sup></p>
<h2><span id="Gang_run_printing" class="mw-headline">Gang run printing</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Gang run printing" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=27">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p><a title="Gang run printing" href="https://en.wikipedia.org/wiki/Gang_run_printing">Gang run printing</a> is a method in which multiple printing projects are placed on a common paper sheet in an effort to reduce printing costs and paper waste. Gang runs are generally used with sheet-fed printing presses and CMYK process color jobs, which require four separate plates that are hung on the plate cylinder of the press. Printers use the term &#8220;gang run&#8221; or &#8220;gang&#8221; to describe the practice of placing many print projects on the same oversized sheet. Basically, instead of running one postcard that is 4 x 6 as an individual job the printer would place 15 different postcards on 20 x 18 sheet therefore using the same amount of press time the printer will get 15 jobs done in the roughly the same amount of time as one job.</p>
<h2><span id="Printed_electronics" class="mw-headline">Printed electronics</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Printed electronics" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=28">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p><a title="Printed electronics" href="https://en.wikipedia.org/wiki/Printed_electronics">Printed electronics</a> is the manufacturing of electronic devices using standard printing processes. Printed electronics technology can be produced on cheap materials such as paper or flexible film, which makes it an extremely cost-effective method of production. Since early 2010, the printable electronics industry has been gaining momentum and several large companies, including <a title="Bemis Company" href="https://en.wikipedia.org/wiki/Bemis_Company">Bemis Company</a> and <a title="Illinois Tool Works" href="https://en.wikipedia.org/wiki/Illinois_Tool_Works">Illinois Tool Works</a> have made investments in printed electronics and industry associations including OE-A and FlexTech Alliance are contributing heavily to the advancement of the printed electronics industry.<sup id="cite_ref-38" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-38">[38]</a></sup><sup id="cite_ref-39" class="reference"><a href="https://en.wikipedia.org/wiki/Printing#cite_note-39">[39]</a></sup></p>
<h2><span id="Printing_terminologies" class="mw-headline">Printing terminologies</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: Printing terminologies" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=29">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>Printing <a title="Terminology" href="https://en.wikipedia.org/wiki/Terminology">terminologies</a> are the specific terms used in printing <a title="Industry" href="https://en.wikipedia.org/wiki/Industry">industry</a>. Following is the list of printing terminologies.</p>
<div class="div-col columns column-width">
<ul>
<li><a title="Airshaft" href="https://en.wikipedia.org/wiki/Airshaft">Airshaft</a></li>
<li><a title="Anilox" href="https://en.wikipedia.org/wiki/Anilox">Anilox</a></li>
<li><a class="mw-redirect" title="Basis weight of paper" href="https://en.wikipedia.org/wiki/Basis_weight_of_paper">Basis weight</a></li>
<li><a class="mw-redirect" title="Ben-Day dots" href="https://en.wikipedia.org/wiki/Ben-Day_dots">Ben-Day dots</a></li>
<li><a title="Bleed (printing)" href="https://en.wikipedia.org/wiki/Bleed_(printing)">Bleed (printing)</a></li>
<li><a title="Broadsheet" href="https://en.wikipedia.org/wiki/Broadsheet">Broadsheet</a></li>
<li><a class="mw-redirect" title="California Job Case" href="https://en.wikipedia.org/wiki/California_Job_Case">California Job Case</a></li>
<li><a title="Camera-ready" href="https://en.wikipedia.org/wiki/Camera-ready">Camera-ready</a></li>
<li><a title="Card stock" href="https://en.wikipedia.org/wiki/Card_stock">Card stock</a></li>
<li><a title="Catchword" href="https://en.wikipedia.org/wiki/Catchword">Catchword</a></li>
<li><a title="CcMmYK color model" href="https://en.wikipedia.org/wiki/CcMmYK_color_model">CcMmYK color model</a></li>
<li><a title="CMYK color model" href="https://en.wikipedia.org/wiki/CMYK_color_model">CMYK color model</a></li>
<li><a title="Colophon (publishing)" href="https://en.wikipedia.org/wiki/Colophon_(publishing)">Colophon (publishing)</a></li>
<li><a title="Color bleeding (printing)" href="https://en.wikipedia.org/wiki/Color_bleeding_(printing)">Color bleeding (printing)</a></li>
<li><a title="Composing stick" href="https://en.wikipedia.org/wiki/Composing_stick">Composing stick</a></li>
<li><a title="Computer to film" href="https://en.wikipedia.org/wiki/Computer_to_film">Computer to film</a></li>
<li><a title="Computer to plate" href="https://en.wikipedia.org/wiki/Computer_to_plate">Computer to plate</a></li>
<li><a title="Continuous tone" href="https://en.wikipedia.org/wiki/Continuous_tone">Continuous tone</a></li>
<li><a class="mw-redirect" title="Contone (printing)" href="https://en.wikipedia.org/wiki/Contone_(printing)">Contone (printing)</a></li>
<li><a title="Die (philately)" href="https://en.wikipedia.org/wiki/Die_(philately)">Die (philately)</a></li>
<li><a title="Dot gain" href="https://en.wikipedia.org/wiki/Dot_gain">Dot gain</a></li>
<li><a class="mw-redirect" title="Dots per centimeter" href="https://en.wikipedia.org/wiki/Dots_per_centimeter">Dots per centimeter</a></li>
<li><a title="Dots per inch" href="https://en.wikipedia.org/wiki/Dots_per_inch">Dots per inch</a></li>
<li><a title="Double truck" href="https://en.wikipedia.org/wiki/Double_truck">Double truck</a></li>
<li><a title="Dry transfer" href="https://en.wikipedia.org/wiki/Dry_transfer">Dry transfer</a></li>
<li><a title="Dultgen" href="https://en.wikipedia.org/wiki/Dultgen">Dultgen</a></li>
<li><a title="Duotone" href="https://en.wikipedia.org/wiki/Duotone">Duotone</a></li>
<li><a title="Duplex printing" href="https://en.wikipedia.org/wiki/Duplex_printing">Duplex printing</a></li>
<li><a title="Edition (printmaking)" href="https://en.wikipedia.org/wiki/Edition_(printmaking)">Edition (printmaking)</a></li>
<li><a title="Error diffusion" href="https://en.wikipedia.org/wiki/Error_diffusion">Error diffusion</a></li>
<li><a title="Flong" href="https://en.wikipedia.org/wiki/Flong">Flong</a></li>
<li><a class="mw-redirect" title="Foil stamping" href="https://en.wikipedia.org/wiki/Foil_stamping">Foil stamping</a></li>
<li><a class="mw-redirect" title="Folio (printing)" href="https://en.wikipedia.org/wiki/Folio_(printing)">Folio (printing)</a></li>
<li><a title="For position only" href="https://en.wikipedia.org/wiki/For_position_only">For position only</a></li>
<li><a title="Frisket" href="https://en.wikipedia.org/wiki/Frisket">Frisket</a></li>
<li><a title="Galley proof" href="https://en.wikipedia.org/wiki/Galley_proof">Galley proof</a></li>
<li><a title="Gang run printing" href="https://en.wikipedia.org/wiki/Gang_run_printing">Gang run printing</a></li>
<li><a title="Grammage" href="https://en.wikipedia.org/wiki/Grammage">Grammage</a></li>
<li><a title="Grey component replacement" href="https://en.wikipedia.org/wiki/Grey_component_replacement">Grey component replacement</a></li>
<li><a title="Halftone" href="https://en.wikipedia.org/wiki/Halftone">Halftone</a></li>
<li><a title="Hand mould" href="https://en.wikipedia.org/wiki/Hand_mould">Hand mould</a></li>
<li><a title="Hellbox" href="https://en.wikipedia.org/wiki/Hellbox">Hellbox</a></li>
<li><a title="Hexachrome" href="https://en.wikipedia.org/wiki/Hexachrome">Hexachrome</a></li>
<li><a title="Hot stamping" href="https://en.wikipedia.org/wiki/Hot_stamping">Hot stamping</a></li>
<li><a title="Imposition" href="https://en.wikipedia.org/wiki/Imposition">Imposition</a></li>
<li><a title="Inkometer" href="https://en.wikipedia.org/wiki/Inkometer">Inkometer</a></li>
<li><a title="Iris printer" href="https://en.wikipedia.org/wiki/Iris_printer">Iris printer</a></li>
<li><a title="Iron-on" href="https://en.wikipedia.org/wiki/Iron-on">Iron-on</a></li>
<li><a title="Job Definition Format" href="https://en.wikipedia.org/wiki/Job_Definition_Format">Job Definition Format</a></li>
<li><a title="Key plate" href="https://en.wikipedia.org/wiki/Key_plate">Key plate</a></li>
<li><a title="Keyline" href="https://en.wikipedia.org/wiki/Keyline">Keyline</a></li>
<li><a title="Kodak Proofing Software" href="https://en.wikipedia.org/wiki/Kodak_Proofing_Software">Kodak Proofing Software</a></li>
<li><a title="Mezzotint" href="https://en.wikipedia.org/wiki/Mezzotint">Mezzotint</a></li>
<li><a title="Nanotransfer printing" href="https://en.wikipedia.org/wiki/Nanotransfer_printing">Nanotransfer printing</a></li>
<li><a title="Non-photo blue" href="https://en.wikipedia.org/wiki/Non-photo_blue">Non-photo blue</a></li>
<li><a title="Overprinting" href="https://en.wikipedia.org/wiki/Overprinting">Overprinting</a></li>
<li><a title="Pagination" href="https://en.wikipedia.org/wiki/Pagination">Pagination</a></li>
<li><a title="Paste up" href="https://en.wikipedia.org/wiki/Paste_up">Paste up</a></li>
<li><a title="Pre-flight (printing)" href="https://en.wikipedia.org/wiki/Pre-flight_(printing)">Pre-flight (printing)</a></li>
<li><a title="Prepress" href="https://en.wikipedia.org/wiki/Prepress">Prepress</a></li>
<li><a title="Prepress proofing" href="https://en.wikipedia.org/wiki/Prepress_proofing">Prepress proofing</a></li>
<li><a title="Press check (printing)" href="https://en.wikipedia.org/wiki/Press_check_(printing)">Press check (printing)</a></li>
<li><a title="Registration black" href="https://en.wikipedia.org/wiki/Registration_black">Registration black</a></li>
<li><a title="Rich black" href="https://en.wikipedia.org/wiki/Rich_black">Rich black</a></li>
<li><a title="Set-off (printing)" href="https://en.wikipedia.org/wiki/Set-off_(printing)">Set-off (printing)</a></li>
<li><a title="Spot color" href="https://en.wikipedia.org/wiki/Spot_color">Spot color</a></li>
<li><a title="Stochastic screening" href="https://en.wikipedia.org/wiki/Stochastic_screening">Stochastic screening</a></li>
<li><a class="mw-redirect" title="Transfer-print" href="https://en.wikipedia.org/wiki/Transfer-print">Transfer-print</a></li>
<li><a title="Trap (printing)" href="https://en.wikipedia.org/wiki/Trap_(printing)">Trap (printing)</a></li>
<li><a title="Under color removal" href="https://en.wikipedia.org/wiki/Under_color_removal">Under color removal</a></li>
</ul>
</div>
<h2><span id="See_also" class="mw-headline">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a title="Edit section: See also" href="https://en.wikipedia.org/w/index.php?title=Printing&amp;action=edit&amp;section=30">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div class="noprint portal plainlist tright" role="navigation" aria-label="Portals">
<ul>
<li><img class="noviewer" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Books-aj.svg_aj_ashton_01.svg/32px-Books-aj.svg_aj_ashton_01.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Books-aj.svg_aj_ashton_01.svg/47px-Books-aj.svg_aj_ashton_01.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Books-aj.svg_aj_ashton_01.svg/63px-Books-aj.svg_aj_ashton_01.svg.png 2x" alt="" width="32" height="28" data-file-width="309" data-file-height="274" /><a title="Portal:Literature" href="https://en.wikipedia.org/wiki/Portal:Literature">Literature portal</a></li>
<li><img class="noviewer" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Telecom-icon.svg/28px-Telecom-icon.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Telecom-icon.svg/42px-Telecom-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Telecom-icon.svg/56px-Telecom-icon.svg.png 2x" alt="" width="28" height="28" data-file-width="500" data-file-height="500" /><a title="Portal:Technology" href="https://en.wikipedia.org/wiki/Portal:Technology">Technology portal</a></li>
</ul>
</div>
<div class="div-col columns column-width">
<ul>
<li><a title="Color printing" href="https://en.wikipedia.org/wiki/Color_printing">Color printing</a></li>
<li><a title="Cloud printing" href="https://en.wikipedia.org/wiki/Cloud_printing">Cloud printing</a></li>
<li><a title="Converters (industry)" href="https://en.wikipedia.org/wiki/Converters_(industry)">Converters (industry)</a></li>
<li><a title="Dickerson combination press" href="https://en.wikipedia.org/wiki/Dickerson_combination_press">Dickerson combination press</a></li>
<li><a title="Electrotyping" href="https://en.wikipedia.org/wiki/Electrotyping">Electrotyping</a></li>
<li><a title="Flexography" href="https://en.wikipedia.org/wiki/Flexography">Flexography</a></li>
<li><a class="mw-redirect" title="Foil stamping" href="https://en.wikipedia.org/wiki/Foil_stamping">Foil stamping</a></li>
<li><a title="Hot metal typesetting" href="https://en.wikipedia.org/wiki/Hot_metal_typesetting">Hot metal typesetting</a></li>
<li><a title="In-mould decoration" href="https://en.wikipedia.org/wiki/In-mould_decoration">In-mould decoration</a></li>
<li><a title="In-mould labelling" href="https://en.wikipedia.org/wiki/In-mould_labelling">In-mould labelling</a></li>
<li><a title="Intaglio (printmaking)" href="https://en.wikipedia.org/wiki/Intaglio_(printmaking)">Intaglio (printmaking)</a></li>
<li><a title="Jang Yeong-sil" href="https://en.wikipedia.org/wiki/Jang_Yeong-sil">Jang Yeong-sil</a></li>
<li><a title="Jikji" href="https://en.wikipedia.org/wiki/Jikji">Jikji</a></li>
<li><a title="Laurens Janszoon Coster" href="https://en.wikipedia.org/wiki/Laurens_Janszoon_Coster">Laurens Janszoon Coster</a></li>
<li><a title="Letterpress printing" href="https://en.wikipedia.org/wiki/Letterpress_printing">Letterpress printing</a></li>
<li><a title="Movable type" href="https://en.wikipedia.org/wiki/Movable_type">Movable type</a></li>
<li><a title="Music engraving" href="https://en.wikipedia.org/wiki/Music_engraving">Music engraving</a></li>
<li><a title="History of music publishing" href="https://en.wikipedia.org/wiki/History_of_music_publishing">Music printing</a></li>
<li><a title="Offset printing" href="https://en.wikipedia.org/wiki/Offset_printing">Offset printing</a></li>
<li><a title="Pad printing" href="https://en.wikipedia.org/wiki/Pad_printing">Pad printing</a></li>
<li><a title="Print on demand" href="https://en.wikipedia.org/wiki/Print_on_demand">Print on demand</a></li>
<li><a title="Printed electronics" href="https://en.wikipedia.org/wiki/Printed_electronics">Printed electronics</a></li>
<li><a title="Printed T-shirt" href="https://en.wikipedia.org/wiki/Printed_T-shirt">Printed T-shirt</a></li>
<li><a title="Printmaking" href="https://en.wikipedia.org/wiki/Printmaking">Printmaking</a></li>
<li><a class="mw-redirect" title="Printing press check" href="https://en.wikipedia.org/wiki/Printing_press_check">Printing press check</a></li>
<li><a title="Security printing" href="https://en.wikipedia.org/wiki/Security_printing">Security printing</a></li>
<li><a title="Typography" href="https://en.wikipedia.org/wiki/Typography">Typography</a></li>
<li><a class="mw-redirect" title="Wang Zhen (official)" href="https://en.wikipedia.org/wiki/Wang_Zhen_(official)">Wang Zhen</a></li>
<li><a title="" href="https://en.wikipedia.org/wiki/Waterless_printing">Waterless printing</a></li>
<li><a title="Textile printing" href="https://en.wikipedia.org/wiki/Textile_printing">Textile printing</a></li>
</ul>
</div>
</div>
<h2><span id="Marketing" class="mw-headline">Branding In Marketing from<br />
<a href="https://en.wikipedia.org/wiki/Branding">https://en.wikipedia.org/wiki/Branding</a><br />
</span></h2>
<ul>
<li><a title="Brand" href="https://en.wikipedia.org/wiki/Brand">Brand</a>, a name, logo, slogan, and/or design scheme associated with a product or service
<ul>
<li><a title="Promotional merchandise" href="https://en.wikipedia.org/wiki/Promotional_merchandise">Branding (promotional)</a>, the distribution of merchandise with a brand name or symbol imprinted</li>
<li><a title="Brand management" href="https://en.wikipedia.org/wiki/Brand_management">Brand management</a>, the application of marketing techniques to a specific product, product line, or brand</li>
<li><a title="Employer branding" href="https://en.wikipedia.org/wiki/Employer_branding">Employer branding</a>, the application of brand management to recruitment marketing and internal brand engagement</li>
<li><a title="Internet branding" href="https://en.wikipedia.org/wiki/Internet_branding">Internet branding</a>, brand management on the Internet</li>
<li><a title="Nation branding" href="https://en.wikipedia.org/wiki/Nation_branding">Nation branding</a>, the application of marketing techniques for the advancement of a country
<ul>
<li><a title="Place branding" href="https://en.wikipedia.org/wiki/Place_branding">Place branding</a>, the application of marketing techniques for the advancement of country subdivisions</li>
</ul>
</li>
<li><a title="Personal branding" href="https://en.wikipedia.org/wiki/Personal_branding">Personal branding</a>, people and their careers marketed as brands</li>
<li><a title="Co-branding" href="https://en.wikipedia.org/wiki/Co-branding">Co-branding</a>, two companies or brands partnering on a product or service</li>
<li><a title="Branding agency" href="https://en.wikipedia.org/wiki/Branding_agency">Branding agency</a>, a type of marketing agency which specializes in creating brands</li>
<li><a title="Faith branding" href="https://en.wikipedia.org/wiki/Faith_branding">Faith branding</a>, the application of marketing techniques to religious institutions or individual</li>
</ul>
</li>
</ul>
<p>&nbsp;</p>
<p>You can read more from us</p>
<h2 class="post-title"><a href="https://xinicomms.com/marketing/">MARKETING TO EXPERIENCE</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/letter-head-printing-sticker/">Letter Head Printing | Sticker</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/local-printing-to-digital-printing-steps/">Local Printing To Digital Printing Steps</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/film-postal-flyer-branding-and-printing-company-in-lagos/">Branding | Printing | Showing In Cinemas Now In Lagos</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/digital-branding-printing/">Best Digital Branding Printing Arrangements To Know</a></h2>
<h2 class="post-title"><a href="https://xinicomms.com/brochure-magazine-printing/">Brochure – Magazine Printing</a></h2>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/printing-branding-advertising-from-wiki/">The Relationship Between Advertising | Printing | Branding From Wiki</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>How To Improve Your Google Website PageSpeed  Score</title>
		<link>https://xinicomms.com/how-to-improve-your-google-website-pagespeed-score/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-improve-your-google-website-pagespeed-score</link>
				<pubDate>Fri, 26 Apr 2019 20:11:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Web & Mobile Application Development]]></category>
		<category><![CDATA[Agency]]></category>
		<category><![CDATA[COmpany Lagos]]></category>
		<category><![CDATA[cross platform app development company]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[Media Company]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile App Development]]></category>
		<category><![CDATA[mobile application development companies Lagos]]></category>
		<category><![CDATA[Mobile Application Development Company]]></category>
		<category><![CDATA[Mobile web apps]]></category>
		<category><![CDATA[SEO Company In Lagos]]></category>
		<category><![CDATA[SEO Services]]></category>
		<category><![CDATA[web ]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=4009</guid>
				<description><![CDATA[<p>How To Improve Your Google Website PageSpeed Score In Do not be in a hurry to read! Get Your Pen To Study If your website takes 2 seconds to load, only 9.6% of customers are bouncing off your page. However, if the page is taking 7 seconds or more to load, an alarming 32% of customers [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/how-to-improve-your-google-website-pagespeed-score/">How To Improve Your Google Website PageSpeed  Score</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<h2>How To Improve Your Google Website PageSpeed Score In</h2>
<p>Do not be in a hurry to read! <strong>Get Your Pen To Study</strong></p>
<p>If your website takes 2 seconds to load, only 9.6% of customers are bouncing off your page. However, if the page is <a class="no-ajaxy" href="https://www.section.io/blog/page-load-time-bounce-rate/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">taking 7 seconds or more to load</a>, an alarming 32% of customers are running away from your website.</p>
<p>Charles Ataghoma, the CEO of XINI Communications and Brian Dean did a <a class="no-ajaxy" href="https://backlinko.com/search-engine-ranking" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">study</a> in which he concluded that Google PageSpeed is one of the most relevant factors when it comes to revenue generation.</p>
<p>Marketers are finding ways to beat their competitors, eliminate the friction and make page loading time their competitive advantage to grab the attention of target customers. Plenty has been written to optimize a website for better speed, but nothing proves more useful than the Google PageSpeed Insights tool.</p>
<h2><strong><u>What exactly is Google PageSpeed Insights tool?</u></strong></h2>
<p>Unless you are living in a cave, far far away from humans, you must have already heard about <a class="no-ajaxy" href="https://developers.google.com/speed/pagespeed/insights/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Google PageSpeed Insights tool</a>.</p>
<p>For others, it is an authentic tool by Google, designed to optimize the performance of the website.</p>
<p>The tool will give you an option to improve the performance of some aspects of the page which will boost the overall page speed. The tool can be used for both mobile and desktop which gives every website a chance to rise above their competitors.</p>
<h2><strong><u>1)  Start by designing a responsive website</u></strong></h2>
<p>Imagine this. You’ve created an excellent website for desktop users. The interface, the colors, the graphics are making users fall head over heels in love with the website. However, somewhere around the globe, some people hate your website. Why? Because when they tried to access your website on a mobile device, the pixels are distorted. The design is displaced. Moreover, the so-called-interface doesn’t seem aesthetically pleasing to them.</p>
<p>I don’t know about you, but as a marketing professional, I know what it feels like to design a website that is responsive in nature and works well across every device.</p>
<p>You can check the responsiveness of your website by visiting the following <a class="no-ajaxy" href="http://ami.responsivedesign.is/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">website</a>.</p>
<p>A responsive website will improve the user experience which will help Google rank your website higher in the Google search pages.</p>
<p><img class="aligncenter wp-image-12028" src="https://www.branex.com/blog/wp-content/uploads/2019/03/responsive-website-design-screens.jpg" sizes="(max-width: 725px) 100vw, 725px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/03/responsive-website-design-screens.jpg 1000w, https://www.branex.com/blog/wp-content/uploads/2019/03/responsive-website-design-screens-300x168.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/03/responsive-website-design-screens-768x430.jpg 768w" alt="web development and digital marketing optimization" width="725" height="406" /></p>
<p>Last year, Google launched its <a class="no-ajaxy" href="https://www.branex.ca/blog/mobile-first-indexing-in-seo/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">mobile-first indexing</a> which gave mobile page load speed a significant place in their algorithms.</p>
<p>So, now you know that mobile page speed is vital to ranking your website in Google search result.</p>
<h2><strong><u>2) Optimize your images</u></strong></h2>
<p>Some people are already doing it while others don’t even pay attention to the pictures on the website.</p>
<p>As per the <a class="no-ajaxy" href="https://support.google.com/webmasters/answer/114016?hl=en" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">guidelines by Google</a>, you need to incorporate quality images in your website.</p>
<p>Embed titles, alt text in every image. Most importantly, use a sitemap for images which will help Google organize your photos in a better way. Use <a class="no-ajaxy" href="https://squoosh.app/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Squoosh</a> to optimize your images.</p>
<p>Of course, using responsive images are a must. Furthermore, use <a class="no-ajaxy" href="https://support.google.com/websearch/answer/510?co=GENIE.Platform%3DAndroid&amp;hl=en" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">safe search</a> images which will increase your chances of ranking your website higher.</p>
<p>It is prudent to <a class="no-ajaxy" href="https://support.google.com/webmasters/answer/7451184" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">read the SEO guideline</a>s before you start working on the SEO of the website.</p>
<h2><strong><u>3) Instead of quantity, focus on the quality of the code</u></strong></h2>
<p>If the code on your website is good, the webpage will load fast.</p>
<p>Use <a class="no-ajaxy" href="https://tools.pingdom.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Pingdom</a> to know precisely which of the codes on your website need more simplification.</p>
<p>Reduce the CSS code in your website. Try to use inline formatting whenever it is possible for you.</p>
<p><img class="aligncenter wp-image-12029 size-full" src="https://www.branex.com/blog/wp-content/uploads/2019/03/no-thanks-were-too-busy.jpg" sizes="(max-width: 600px) 100vw, 600px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/03/no-thanks-were-too-busy.jpg 600w, https://www.branex.com/blog/wp-content/uploads/2019/03/no-thanks-were-too-busy-300x200.jpg 300w" alt="SEO and Digital Marketing" width="600" height="400" />It is best advised to avoid any intensive WordPress themes or bulky codes.</p>
<p>Instead, it is better to use a <a class="no-ajaxy" href="https://www.sitepoint.com/a-basic-html5-template/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">clean HTML 5 template</a>.</p>
<p>Google uses several machines to gather data from the website. If the code on the site is not well-structured, it will give Google a hard time, and this is not something you want for your website.</p>
<h4><strong><a class="no-ajaxy" href="https://xinicomms.com/contact-us/" data-wpel-link="internal">We can help you build simple, yet gorgeous websites.</a></strong></h4>
<p>Google PageSpeed Insights enable search engines to look for straight-forward codes and rank the websites based-on the simplicity of the code.</p>
<h2><strong>4) Focus on Brower Cache</strong></h2>
<p>Whenever you visit a website, the web browser stores data such as HTML, CSS, JavaScript, and images in the local cache. This makes things easier when you visit the website the next time. When the cache is stored, it gives access to the same browser and reduces the delay that occurs when rendering the website. When the browser cache is implemented, it will help load the website faster.</p>
<p>A <a class="no-ajaxy" href="https://hostnoc.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">professional hosting service</a> might already be using browser cache. However, if you want to implement the browser cache, you can always go for <a class="no-ajaxy" href="https://www.w3-edge.com/products/w3-total-cache/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">the W3 total cache plugin.</a></p>
<h2><strong>5) Accelerated Mobile Pages</strong></h2>
<p>When building a website, it is good to learn from the best. The <a class="no-ajaxy" href="https://xinicomms.com/web-and-mobile-application-development/" data-wpel-link="internal">best startup websites</a> employ Accelerated Mobile Pages to pull-up data and present it in a decluttered manner.</p>
<p>Here are the three reasons why you must use Accelerated Mobile Pages (AMP)</p>
<p>A mere <a class="no-ajaxy" href="https://neilpatel.com/blog/loading-time/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">1-second delay in loading the webpage</a> can drop the conversion rates by 7%.</p>
<p><a class="no-ajaxy" href="https://timkadlec.com/remembers/2018-03-19-how-fast-is-amp-really/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Studies</a> have shown that using AMP pages to fetch data from a website can reduce the number of server requests by 77%. Which means that a website will load faster regardless of the device used to browse the website.</p>
<h2><strong><u>6) When it comes to website design, less is more</u></strong></h2>
<p>A clean website is not always attention-grabbing for users but Google PageSpeed Insights necessitate website owners to simplify their website designs.</p>
<p>A clutter free website design will reduce the load-time of the website. Using <a class="no-ajaxy" href="https://www.branex.com/blog/power-of-ux-design/" data-wpel-link="internal">simple triggers</a>can boost the UX of your website.</p>
<p>The Speed insight tool will help you eliminate all the extra space that your website is consuming, and you can ask your website developer to mitigate any further damage.</p>
<h2><img class="aligncenter wp-image-12030" src="https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born.jpg" sizes="(max-width: 474px) 100vw, 474px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born.jpg 600w, https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born-150x150.jpg 150w, https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born-300x300.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born-100x100.jpg 100w, https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born-500x500.jpg 500w, https://www.branex.com/blog/wp-content/uploads/2019/03/greatdesign-born-350x350.jpg 350w" alt="" width="474" height="474" />To conclude it all</h2>
<p>As a skilled marketer, it is essential to learn website optimization and the holistic approach to every piece of the puzzle that constitutes the site. Furthermore, web speed optimization is an ongoing project. There is no limit to it. You can take six months and still feel that it is not enough.</p>
<p>However, <a href="https://xinicomms.com/web-and-mobile-application-development/">PageSpeed</a> Tool can help you tons. Use the above rules as a guideline and starting point to familiarize yourself with the tool, and start setting clear goals on how you plan to use it to craft your long-term content marketing strategy.</p>
<p>&nbsp;</p>
<h1>Lets Us Take you further on a series &#8211; 1</h1>
<p>Since the year 2016, designers have been tinkering around with <a class="no-ajaxy" href="https://www.branex.com/blog/power-of-ux-design/" data-wpel-link="internal">UX design</a>. There have been changes in the way website designers design app and websites. In the year 2017, website designers came up with personalized designs to save their users some time.</p>
<p>Here, we give you seven website ideas which can fuel you with inspiration and help you create better websites to impress your clients and customers and get the best buck for your money:</p>
<ul>
<li>
<h2><strong><u>Robby Leonardi Studio</u></strong></h2>
</li>
</ul>
<p>In an era of digital disruption, <a class="no-ajaxy" href="http://www.rleonardi.com/interactive-resume/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Robby Leonardi</a> found a way to get hired as a graphic designer. His website is his portfolio. You can flaunt your brand achievements in this way. Trendy retro style inspired by the ’80s and 90’s photography. On a first glance, it looks like a Mario game.</p>
<p>Moreover, when you move forward, you realize that this man is a genius. Just check out the typography, the fonts, and how the images are blending together seamlessly with the character. Everything comes together so well.</p>
<ul>
<li>
<h2><strong><u>CatScarf</u></strong></h2>
</li>
</ul>
<p>The cat is the epitome of fanciness, faithfulness, and cuteness. Moreover, when you land on this homepage, you feel yourself brimming over with the same sentiments. The visual appeal of this page is impeccable. Thanks to sharp graphics, CatScarf took minimalism to a whole other level. The hero image dominating the top of the page basks in the limelight and instantly catches the eye. Scroll down, and you’ll see that each of the products is aligned beautifully in a transparent grid. This gives our eyes a pleasing effect and if you hover over an item, you can delve deeper in its product details page. I think every ecommerce owner should take inspiration from this website.</p>
<ul>
<li>
<h2><strong><u>New Acton</u></strong></h2>
</li>
</ul>
<p>Are you hackneyed with the old static design? Why not take a dose of inspiration from graphic designers and illustrators who are doing great work already? You can take some inspiration from <a class="no-ajaxy" href="http://newacton.com.au/#visual" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">New Acton</a>. It is simplicity at its best. Not much content, just amazing animation that will keep you engaged. The sidebar incorporates many categories. Click on any type, and you’ll see relevant animation playing at the entrance. Just a cool way to grab the attention of a new user.</p>
<ul>
<li>
<h2><strong><u>GC watches</u></strong></h2>
</li>
</ul>
<p>Time is an essential commodity. If you don’t want your customers to leave without buying anything, the best way is to show the products in a straight-forward manner. <a class="no-ajaxy" href="https://global.shop.gcwatches.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">GC Watches</a> is one of those website ideas which will force you to simplify your ecommerce store. The oversized typography makes for better readability. The crystal-clear photos, the high-definition zoom for every watch will entice every watch aficionado. The simplicity of this website makes it a perfect website design ideas that will generate sales in Nigeria and diaspora.</p>
<ul>
<li>
<h2><strong><u>Big Commerce</u></strong></h2>
</li>
</ul>
<p>For anyone who has no idea how to show their services seamlessly, <a class="no-ajaxy" href="https://www.bigcommerce.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Big Commerce</a> is the perfect example. A simple tagline that communicates what the business is all about . The packages are in front. Regardless of the size of your business, you will be presented with several categories which will let you choose from the favorite list of industries. Case studies, testimonials and the use of images to steal the attention of customers and show them what the brand is offering, makes this website steal the limelight.</p>
<ul>
<li>
<h2><strong><u>Howard Yount</u></strong></h2>
</li>
</ul>
<p>A potent trio – An exuberant background, a colossal title, and clear message right in the front. If your user is not a competitor of <a class="no-ajaxy" href="https://www.howardyount.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Howard Yount</a>, there is no reason for them not to be impressed with such a direct approach. Customers love companies that give them offerings without letting customers dig deep in the sub-pages. The overall design of the website is simple yet impactful.</p>
<ul>
<li>
<h2><strong><u>Take</u></strong><strong><u> What You Can Carry</u></strong></h2>
</li>
</ul>
<p>A not to miss website in cool website design ideas. The entire website seems to be floating in the air, allowing so much room for free space. Just check the alignment of words. The design by <a class="no-ajaxy" href="https://takewhatyoucancarry.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Matt Porterfield</a> makes it necessary to take some inspiration from this design which blends vertical and horizontal text with perfect alignment.</p>
<h2>Closing Thoughts</h2>
<p>We’ve been trying to curate the best of seven cool website designs for you. As you would know, a website that is unattractive or poorly constructed harms your business more than helps it. Stay abreast of industry trends and follow all the CRO principles to create the <a class="no-ajaxy" href="https://xinicomms.com/" data-wpel-link="internal">best website design for your business</a>. Assess the efficiency of your website design based on the number of visitors, bounce rate, and conversions.</p>
<h1>Lets Us Take you further on a series &#8211; 2</h1>
<p>Every soul in this world has a higher purpose. Birth is a wondrous experience. You open your eyes to a world rife with opportunities for the taking. You can become anything. For some people, it happens in an instant. Their life’s purpose unfolds right in front of them, but for others, it takes a lifetime to understand why they were born.</p>
<p>If your startup is in its infancy, you might be facing something familiar. Instead of understanding your life purpose, you are struggling to find your brand purpose. If you’re one of those brands that don’t have a direction yet, here are some startup websites which can provide you with some food for thought.</p>
<ol>
<li>
<h3><strong><u><a class="vglnk" href="http://airohealth.com/" rel="nofollow">AiroHealth.com</a> – Simple is better</u></strong></h3>
</li>
</ol>
<p>Knowledge lies in piling up facts. Wisdom is the elimination of all clutter. <a class="no-ajaxy" href="https://www.airohealth.com/anxiety-tracker" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Airohealth.com</a> is all about simplicity. The first glance at the website will be enough to safely venture a guess at what the company is selling. On the front page of the website, you realize that it is solving a real-life problem. If you scroll down, you will see how the product works. Next, comes how to think about anxiety and stress. Moreover, in the end, there are testimonials with a call to action in Lagos Nigeria or across Africa.</p>
<p><img class="aligncenter size-large wp-image-11955" src="https://www.branex.com/blog/wp-content/uploads/2019/02/airo-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/airo-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/airo-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/airo-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/airo.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>2) <a class="vglnk" href="http://rateyourseats.com/" rel="nofollow">RateYourSeats.com</a> – Selling something unique</u></strong></h3>
<p><a class="no-ajaxy" href="https://www.rateyourseats.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Rateyourseats.com</a> is a ticket-selling website with a distinctive feature. Not only does it offer the most market competitive ticket prices, it gives you a bird’s eye view of the seat based on crowdsourced reviews, ratings, and photos of a plethora of concert and sports avenues. This makes sure that our customers make an informed choice based on a particular seat’s rating and reviews by actual users.</p>
<p><img class="aligncenter size-large wp-image-11956" src="https://www.branex.com/blog/wp-content/uploads/2019/02/rateyourseats-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/rateyourseats-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/rateyourseats-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/rateyourseats-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/rateyourseats.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>3) <a class="vglnk" href="http://groovejar.com/" rel="nofollow">GrooveJar.com</a> – UI/UX Design</u></strong></h3>
<p>Much has been said about UI/UX Design. If you are looking for some solid inspiration, visit <a class="no-ajaxy" href="https://www.groovejar.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">GrooveJar.com</a>. The startup helps other startups boost their website traffic. However, their prominent feature is the clean, sleek interface of the website. Decent navigation, bulging CTAs, and giving out comprehensive information without too much scrolling, makes this website a prime example of the perfect UI/UX design.</p>
<p>The chatbox is easy to locate. Reviews can be found right at the bottom. GrooveJar offers everything that a startup website design has to offer. Take note.</p>
<p><img class="aligncenter size-large wp-image-11957" src="https://www.branex.com/blog/wp-content/uploads/2019/02/groovejar-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/groovejar-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/groovejar-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/groovejar-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/groovejar.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>4) <a class="vglnk" href="http://smarthomenx.com/" rel="nofollow">SmarthomeNX.com</a> – The Perfect Mobile First website</u></strong></h3>
<p>There is much buzz about mobile first websites. In the midst of all this, <a class="no-ajaxy" href="https://www.smarthomenx.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">smathomenx.com </a>makes a brilliant effort to design the perfect mobile-first website. The website is not at all complex. The Accelerated Mobile Pages allows the website to load immediately. A perfect example of a startup website design where users can log in and join in the discussions without going over lengthy registration steps.</p>
<p><img class="aligncenter size-large wp-image-11958" src="https://www.branex.com/blog/wp-content/uploads/2019/02/smarthome-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/smarthome-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/smarthome-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/smarthome-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/smarthome.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>5) <a class="vglnk" href="http://vertoe.com/" rel="nofollow">Vertoe.com</a> – Mobile Loading Speed</u></strong></h3>
<p><a class="no-ajaxy" href="https://xinicomms.com/how-to-improve-your-google-website-pagespeed-score" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Google Speed Update</a> made it clear that Google is forcing brands to decrease their bounce rate by <a href="https://xinicomms.com/">developing mobile-optimized websites</a>. <a class="no-ajaxy" href="https://vertoe.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Vertoe.com</a> took this seriously and started working on the loading speed of the website on mobile.  The website is optimized in a way that users don’t have to download any app or wait for the website to load in the mobile. The load time is super-fast. The one-click checkout helps customers place an order seamlessly. The <a class="no-ajaxy" href="https://xinicomms.com/" data-wpel-link="internal">website</a> works on all primary mobile devices and fits across all screen sizes.</p>
<p><img class="aligncenter size-large wp-image-11959" src="https://www.branex.com/blog/wp-content/uploads/2019/02/vertoe-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/vertoe-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/vertoe-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/vertoe-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/vertoe.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>6) <a class="vglnk" href="http://efynch.com/" rel="nofollow">EFynch.com</a> – Privacy and Payment Options</u></strong></h3>
<p>If there are a few things that a startup website capitalize on, it is payment options and privacy policy. Other trends include AI and machine learning. Some of the payment methods include complex AI algorithms which simplify processing and make it easier to pay fast. This website teaches a lot. Also, there are some components of IoT to support the simple dashboard.</p>
<p><img class="aligncenter size-large wp-image-11960" src="https://www.branex.com/blog/wp-content/uploads/2019/02/efytech-1024x497.jpg" sizes="(max-width: 1024px) 100vw, 1024px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/02/efytech-1024x497.jpg 1024w, https://www.branex.com/blog/wp-content/uploads/2019/02/efytech-300x146.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/02/efytech-768x373.jpg 768w, https://www.branex.com/blog/wp-content/uploads/2019/02/efytech.jpg 1257w" alt="" width="1024" height="497" /></p>
<h3><strong><u>7) <a class="vglnk" href="http://printful.com/" rel="nofollow">Printful.com</a> – Grist for the mill ecommerce website</u></strong></h3>
<p>The best startup websites provide convenience and simplicity to users. <a class="no-ajaxy" href="https://www.printful.com/" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">Printful.com</a> takes this approach to the next-best level. You can talk all about white-spacing and how-to optimize the website design to show quality work without sacrificing the caliber of the website. A clean ecommerce design which can teach a lot about how ecommerce stores can use the power of minimalism to sell products online.</p>
<p>The website offers perfect examples in its blog for entrepreneurs to apply across their business. How to send emails that entice customers? Moreover, how to scale business on a global scale?</p>
<p>&nbsp;</p>
<h1 class="entry-title">Facebook #10YearChallenge: A Fun Gimmick or something much more Sinister</h1>
<p>Unless you have been hiding under a rock the past week, you might have participated in the #10YearChallenge, or rather the hashtag #2009vs2019. The challenge involves posting a contemporary photo of yourself in parallel with another from ten years ago. Ostensibly it’s about nostalgia and going down the memory lane to see how much things have changed in the intervening years. Replete with opportunities for virtue signaling, reflection, poignancy, bucket loads of humor and celebrity humble bragging, the trend was always meant to pick up steam.</p>
<p>For some people it was fun, just a meme to embrace the past. But to others, it felt more sinister. Something that threatened to undermine their safety. After all, not everyone feels memes are something to laugh on.</p>
<p>The #10YearChallenge hiked when celebrities like Jersey Shore’s Nicole and Kevin Smith joined the party. The challenge spread like wildfire and people started sharing their photos on every platform.</p>
<p><img class="size-full wp-image-11890 alignnone" src="https://www.branex.com/blog/wp-content/uploads/2019/01/jersey-shore-nicole-facebook-10yearchallange.jpg" sizes="(max-width: 845px) 100vw, 845px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/01/jersey-shore-nicole-facebook-10yearchallange.jpg 845w, https://www.branex.com/blog/wp-content/uploads/2019/01/jersey-shore-nicole-facebook-10yearchallange-300x224.jpg 300w, https://www.branex.com/blog/wp-content/uploads/2019/01/jersey-shore-nicole-facebook-10yearchallange-768x573.jpg 768w" alt="" width="845" height="630" /></p>
<p>The #10YearChallenge was all fun until a tweet moved thousands of people to worry: Are we inadvertently helping giant corporations boost their algorithms for age progression and biometric identification? Now there’s some food for thought right there. Facial recognition proponents argue that all this treasure trove of data could be indispensable for finding missing people or catching criminals. But critics warn us of unfathomable effects and mass surveillance that we can’t yet fully grasp the intensity of.</p>
<p>While the Cambridge Analytica scandal was still fresh in the minds of users along with the woes of other data breaches associated with Facebook, Facebook has found itself in hot waters again. Even after giving ample clarification on the matter, Facebook is denying its connection with the #10YearChallenge.</p>
<div class="SandboxRoot env-bp-350" data-twitter-event-id="0">
<div id="twitter-widget-1" class="EmbeddedTweet EmbeddedTweet--cta js-clickToOpenTarget tweet-InformationCircle-widgetParent" lang="en" data-click-to-open-target="https://twitter.com/kateo/status/1084199700427927553" data-iframe-title="Twitter Tweet" data-scribe="page:tweet" data-twitter-event-id="2">
<div class="EmbeddedTweet-tweetContainer">
<div class="EmbeddedTweet-tweet">
<blockquote class="Tweet h-entry js-tweetIdInfo subject expanded" cite="https://twitter.com/kateo/status/1084199700427927553" data-tweet-id="1084199700427927553" data-scribe="section:subject">
<div class="Tweet-header">
<p><a class="TweetAuthor-avatar Identity-avatar u-linkBlend" href="https://twitter.com/kateo" data-scribe="element:user_link" aria-label="Kate O'Neill (screen name: kateo)"><img class="Avatar" src="https://pbs.twimg.com/profile_images/1082440628133277696/3vXJoeEj_normal.jpg" alt="" data-scribe="element:avatar" data-src-2x="https://pbs.twimg.com/profile_images/1082440628133277696/3vXJoeEj_bigger.jpg" data-src-1x="https://pbs.twimg.com/profile_images/1082440628133277696/3vXJoeEj_normal.jpg" /></a></p>
<div class="TweetAuthor js-inViewportScribingTarget" data-scribe="component:author">
<div class="TweetAuthor-nameScreenNameContainer">
<p><span class="TweetAuthor-decoratedName"><span class="TweetAuthor-name Identity-name customisable-highlight" title="Kate O'Neill" data-scribe="element:name">Kate O&#8217;Neill</span></span></p>
<div class="Icon Icon--verified " title="Verified Account" role="img" aria-label="Verified Account"></div>
<p><span class="TweetAuthor-decoratedName"><span class="TweetAuthor-verifiedBadge" data-scribe="element:verified_badge"><b class="u-hiddenVisually"><img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/2714.png" alt="✔" class="wp-smiley" style="height: 1em; max-height: 1em;" /></b></span></span><span class="TweetAuthor-screenName Identity-screenName" dir="ltr" title="@kateo" data-scribe="element:screen_name">@kateo</span></p>
</div>
</div>
<div class="Tweet-brand">
<div class="Icon Icon--twitter " title="View on Twitter" role="presentation" aria-label="View on Twitter"></div>
</div>
</div>
<div class="Tweet-body e-entry-content" data-scribe="component:tweet">
<div class="u-hiddenVisually js-inViewportScribingTarget"></div>
<p class="Tweet-text e-entry-title" dir="ltr" lang="en">Me 10 years ago: probably would have played along with the profile picture aging meme going around on Facebook and Instagram<br />
Me now: ponders how all this data could be mined to train facial recognition algorithms on age progression and age recognition</p>
<div class="TweetInfo">
<div class="TweetInfo-like">
<div data-scribe="element:heart">
<div class="Icon Icon--heart " title="Like" role="img" aria-label="Like"></div>
</div>
<p><a class="TweetInfo-heart" title="Like" href="https://twitter.com/intent/like?tweet_id=1084199700427927553" data-scribe="component:actions"><span class="TweetInfo-heartStat" data-scribe="element:heart_count">24.9K</span></a></p>
</div>
<div class="TweetInfo-timeGeo"><a class="u-linkBlend u-url customisable-highlight long-permalink" href="https://twitter.com/kateo/status/1084199700427927553" data-datetime="2019-01-12T21:25:26+0000" data-scribe="element:full_timestamp"><time class="dt-updated" title="Time posted: January 12, 2019 21:25:26 (UTC)" datetime="2019-01-12T21:25:26+0000">11:25 PM &#8211; Jan 12, 2019</time></a></div>
<div class="tweet-InformationCircle" data-scribe="element:notice"><a class="Icon Icon--informationCircleWhite js-inViewportScribingTarget" title="Twitter Ads info and privacy" href="https://support.twitter.com/articles/20175256"><span class="u-hiddenVisually">Twitter Ads info and privacy</span></a></div>
</div>
</div>
</blockquote>
</div>
<div class="CallToAction-icon" data-scribe="element:conversation_icon">
<div class="Icon Icon--replyCTA " title="View conversation on Twitter" role="img" aria-label="View conversation on Twitter"></div>
</div>
<div class="CallToAction-text" data-scribe="element:conversation_text">11.5K people are talking about this</div>
<div class="CallToAction-chevron" data-scribe="element:cta_chevron">
<div title="View on Twitter" role="img" aria-label="View on Twitter"></div>
<div class="Icon Icon--chevronRightCTA " title="View on Twitter" role="img" aria-label="View on Twitter">Some of the high authority folks on Facebook assert that <em>‘It is just a user-generated meme which initiated on its own.’ </em>But we all know better than to fall prey. It’s true that people enjoy their time on Facebook, and in that time, they share their personal lives not only with the people they know but inadvertently, with people working in Facebook.</div>
</div>
</div>
</div>
</div>
<p>Talking to <a class="no-ajaxy" href="https://www.nytimes.com/2019/01/19/technology/facebook-ten-year-challenge.html" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">New York Times</a>, Lauren A. Rhue, shared her concerns about the algorithm.</p>
<p>“The #10YearChallenge is giving authorities a clear set of data and how age-progression can be predicted in a few years from now.”</p>
<p>Furthermore, the professor said that there are already trillion on photos on Facebook and people should be wary of their data is out there in public like that.</p>
<p><strong>“The risk in giving up any type of biometric data to a company is that there’s not enough transparency, not only about how the data is currently being used, but also the future uses for it.”</strong></p>
<p>This is another form of biometric data that is being used by the <a class="no-ajaxy" href="https://www.nytimes.com/2018/08/23/us/ramsey-street-rapist-dna.html?module=inline" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">law enforcement agencies</a> to track down prospects.</p>
<p>Finally, Professor Rhue concluded with an alarming thought, ‘There are things out there in the internet which are not treated as a threat now.” And 10 years from now people will understand that they are a threat, but by then, they would have parted with the data already.</p>
<p><strong><u>Why Facebook really need this kind of data?</u></strong></p>
<p>As per statistics, <a class="no-ajaxy" href="https://www.businessinsider.com/facebook-350-million-photos-each-day-2013-9" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">350 million photos</a> are uploaded on Facebook daily. Here, we need to pay attention to the fact that no-one is forcing people to upload and share photos; people are willing to share photos and feel proud about it.</p>
<p>The year 2019 is not about how many photos are uploaded each day, it is about image processing, and the power of artificial intelligence (AI) and how it is becoming smarter by the day.</p>
<p><strong>Let us take all the strain and help you boost your sales.</strong></p>
<p>Almost every company is using facial recognition to analyze candidates and evaluate them even before they start working with the company. The iPhone app and even the Google Photos app understand, and match faces to people and their relevant contact numbers.</p>
<p>The horrors of <a class="no-ajaxy" href="https://www.theverge.com/2016/10/24/13379204/black-mirror-season-3-episode-1-nosedive-recap" target="_self" rel="nofollow external noopener noreferrer" data-wpel-link="external">social media have been highlighted in Black Mirror</a> – the first episode of season 3. Here instead of rating products, people are being rated. And people that show kindness and generosity towards people are rated high in the society and these people get jobs more often than people with a low rating. These ratings are displayed right in front of a person.</p>
<p><img class="size-full wp-image-11891 alignnone" src="https://www.branex.com/blog/wp-content/uploads/2019/01/jack.jpg" sizes="(max-width: 650px) 100vw, 650px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/01/jack.jpg 650w, https://www.branex.com/blog/wp-content/uploads/2019/01/jack-300x158.jpg 300w" alt="" width="650" height="342" /></p>
<p>Some people suggest that Facebook don’t really need this data because they have all the photos time stamped but think of the time that Facebook is saving by not having to through every picture which was uploaded by the user in the year 2009. Sure, you could mine Facebook for profile pictures and look at posting dates or EXIF data. But that’s a lot of noise; it’d help if you had a clean then-and-now. What’s more, the photo posting date and even EXIF data wouldn’t always be reliable for when the pic was actually taken. People could have scanned offline photos. People might have uploaded pictures multiple times over years. Some platforms strip EXIF data for privacy; people’s captions are helpfully adding that context back, as well as other context about where and how the pic was taken.</p>
<p>Regardless of how much Facebook denies the fact that it was just a meme challenge that was initiated automatically for the kicks, the reality is that sooner or later, Facebook will use these pictures to train their face recognition algorithm.</p>
<p>If you have partaken in the #10yearchallenge, good for you. You’re now a part of some future conspiracy – just kidding. It’s okay to have some fun but what we need to do is to ponder over the effects that each one of our posts is having. Read</p>
<h2 class="post-title"><a href="https://xinicomms.com/digital-marketing-seo/">Digital SEO Strategy For 2019</a></h2>
<p><img class="size-full wp-image-11892 aligncenter" src="https://www.branex.com/blog/wp-content/uploads/2019/01/posting.png" sizes="(max-width: 500px) 100vw, 500px" srcset="https://www.branex.com/blog/wp-content/uploads/2019/01/posting.png 500w, https://www.branex.com/blog/wp-content/uploads/2019/01/posting-287x300.png 287w" alt="" width="500" height="522" /></p>
<p>In the end, it is all about keeping your personal life offline and using social media to establish connections for your business and help your brand reach more customers. Take control over whatever you share on <a href="https://xinicomms.com/social-media-management-2/">social media</a>, and think twice if it can hurt your personal or professional life in the coming future.</p>
<blockquote class="wp-embedded-content" data-secret="c3X6Hb4ySU"><p><a href="https://xinicomms.com/digital-marketing-seo/">Digital SEO Strategy For 2019</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;Digital SEO Strategy For 2019&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/digital-marketing-seo/embed/#?secret=c3X6Hb4ySU" data-secret="c3X6Hb4ySU" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<blockquote class="wp-embedded-content" data-secret="rAqj6RsYS3"><p><a href="https://xinicomms.com/digital-marketing-3/">How To Leverage On  Quora SEO Power For Digital Marketing Conversion</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;How To Leverage On  Quora SEO Power For Digital Marketing Conversion&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/digital-marketing-3/embed/#?secret=rAqj6RsYS3" data-secret="rAqj6RsYS3" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<blockquote class="wp-embedded-content" data-secret="8pr8l3dMAC"><p><a href="https://xinicomms.com/branding-printing-logistics-prints-price-list-4/">The importance of posters in advertising your business in Lagos</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;The importance of posters in advertising your business in Lagos&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/branding-printing-logistics-prints-price-list-4/embed/#?secret=8pr8l3dMAC" data-secret="8pr8l3dMAC" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/how-to-improve-your-google-website-pagespeed-score/">How To Improve Your Google Website PageSpeed  Score</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>Digital SEO Strategy For 2019</title>
		<link>https://xinicomms.com/digital-marketing-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=digital-marketing-seo</link>
				<pubDate>Thu, 25 Apr 2019 10:03:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Marketing Communications]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Digital Management]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Perception Management]]></category>
		<category><![CDATA[SEARCH ENGINE OPTIMIZATION]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SEO Company In Lagos]]></category>
		<category><![CDATA[SEO Services]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=3986</guid>
				<description><![CDATA[<p>Local SEO has altered the digital landscape immensely in the past few years. Where once firms were racing to mark a global footprint, the focus has now shifted towards ensuring that SEO results are most relevant to a particular geographical location. This is amply illustrated by trends such as the voice search, virtual smartphone assistants [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/digital-marketing-seo/">Digital SEO Strategy For 2019</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p><span style="color: #000000;">Local SEO has altered the digital landscape immensely in the past few years. Where once firms were racing to mark a global footprint, the focus has now shifted towards ensuring that SEO results are most relevant to a particular geographical location. This is amply illustrated by trends such as the voice search, virtual smartphone assistants and smart devices for consumers who are not interacting with a screen. So, web content must be optimized for local users.</span></p>
<p><span style="color: #000000;">The key to effective digital marketing is ensuring that your search engine optimization efforts are geared towards local searches. Successfully channeling local traffic to your website boosts visibility amongst customers looking for local options. Amping up your local SEO performance helps you ride to the top of search results and can also in turn positively influence your paid search results.</span></p>
<p><span style="color: #000000;"><img class="alignnone wp-image-2901 size-large" src="https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-1024x640.jpg" alt="" width="1024" height="640" srcset="https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-1024x640.jpg 1024w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-300x188.jpg 300w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-768x480.jpg 768w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-685x428.jpg 685w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-570x356.jpg 570w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-490x306.jpg 490w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-370x231.jpg 370w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-270x169.jpg 270w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit-210x131.jpg 210w, https://xinicomms.com/wp-content/uploads/2018/07/51-PC-circuit.jpg 1680w" sizes="(max-width: 1024px) 100vw, 1024px" /></span></p>
<h2><span style="color: #000000;">Local SEO in 2019</span></h2>
<p><span style="color: #000000;">Google estimates that 97% of consumers look for local businesses online. Being able to convert a search result to a business deal is the difference between staying afloat and going under. According to a study (link), statistics clearly illustrate how crucial local search is for businesses:</span></p>
<ul>
<li><span style="color: #000000;">50% searches on mobile phones ended in an actual visit to the same business</span></li>
<li><span style="color: #000000;">50% searches are looking for local solutions to problems</span></li>
<li><span style="color: #000000;">One in three smartphone searches was conducted immediately prior to a local store visit</span></li>
</ul>
<p><span style="color: #000000;">Local search is a broad field that’s constantly growing and changing, challenging marketers to keep up. No matter what kind of business it is, traditional marketing campaigns should always be accompanied by real efforts into local <a style="color: #000000;" href="https://xinicomms.com/digital-marketing/seo/">SEO ranking</a> to boost online presence. Ranking as a legitimate business increases brand awareness and customers’ traffic, saves money on paid ads, and attracts instant publicity.</span></p>
<h2><span style="color: #000000;">What is Local SEO?</span></h2>
<p><span style="color: #000000;">Local SEO is a search engine optimization process specifically geared to highlighting local results during online searches. Page content, link building and on page optimization are combined to show up on top in local search results. Since Google remains the most relevant search engine, consistent information must be provided across the local search landscape. The only way in which local SEO and organic SEO differ is in terms of the geographical component – while organic SEO is aimed at a global audience, local SEO is relevant to a limited geographical spread.</span></p>
<h3><span style="color: #000000;">Top Google Local Pack Ranking Factors</span></h3>
<p><span style="color: #000000;">Here are the bases you must cover if you want your website to show up at the top of search results on Google:</span></p>
<ul>
<li><span style="color: #000000;">Claim a &#8220;Google My Business&#8221; page and put correct information regarding the type of business. Upload photos of your location, products, and staff to increase credibility. Your NAP (name, address, phone number) should be consistent across all platforms</span></li>
<li><span style="color: #000000;">The Google Knowledge Panel which collects and displays all relevant basic information about a local listing also affects ranking</span></li>
<li><span style="color: #000000;">Create a presence on online directories such as Yellow pages, Foursquare, Apple Maps, and Yahoo&#8217;s Localworks</span></li>
<li><span style="color: #000000;">Your website should be mobile-friendly. Google’s latest algorithm first checks whether you are mobile-ready.</span></li>
<li><span style="color: #000000;">Proximity of address matters most to local rankings. How close searchers are to particular businesses at the moment has an impact on whether or not those businesses show up in Google search results.</span></li>
</ul>
<h2><span style="color: #000000;">What is Important for your Local SEO Strategy?</span></h2>
<p><span style="color: #000000;">Local SEO implies that the relevant audience is aware of your existence. These are the people who are located locally, and who conduct online searches with clear intent. Being visible to them is what wins the day. Here are some tips for becoming accessible to more and more people locally:</span></p>
<ul>
<li><span style="color: #000000;"><strong>Local content development </strong>– Content should be relevant and geared towards a local audience. It is best to anticipate search queries.</span></li>
<li><span style="color: #000000;"><strong>Citation management </strong>– A citation contains online mention of the particulars of a business. They help the searches locate and discover local businesses.</span></li>
<li><span style="color: #000000;"><strong>Review management</strong> &#8211; Allow your customers to review your performance, preferably directly on Google as these are given priority during searches. Some of the other review sites are Yelp, Glassdoor and others. Reviews greatly increase the visibility of your website, so you must ensure that the majority of them are positive. Reviews which include your location or keywords promote trust with Google. Also, always try and respond to all reviews.</span></li>
<li><span style="color: #000000;"><strong>Technical needs</strong> – The local business website should be error-free, indexable, multi-device compliant, properly optimized and well structured.</span></li>
<li><span style="color: #000000;"><strong>Schema </strong>– Properly configured, it allows a search engine to display user-friendly snippets about your website.</span></li>
<li><span style="color: #000000;"><strong>Local link building</strong> – Email, followed by community websites and local content and news websites are most valuable for creating links that carry up local business in search rankings.</span></li>
<li><span style="color: #000000;"><strong>On-site optimization</strong> – Write and arrange content on your website in a manner that local searchers find it relevant</span></li>
<li><span style="color: #000000;"><strong>Website design</strong> – The website should be accessible across all mainstream devices</span></li>
<li><span style="color: #000000;"><strong>Email marketing</strong> – This involves keeping current and potential customers updated on latest news from the company’s end and is the best way to get across to a targeted audience.</span></li>
<li><span style="color: #000000;"><strong>Google’s Mobile-first indexing</strong> &#8211; Google has issued guidelines to create a mobile-friendly website. Follow these carefully to improve your website’s performance.</span></li>
<li><span style="color: #000000;"><strong>Offline loyalty programs</strong> – Presence on major social media platforms such as Facebook and Instagram can help you earn local links.</span></li>
</ul>
<p><span style="color: #000000;">In addition to the above, some local tactics are: apply geo-modified keywords to pinpoint the location, and ensure that you are featured on trusted local snippets.</span></p>
<h2><span style="color: #000000;">Local SEO tools</span></h2>
<p><span style="color: #000000;">Some local SEO specific tools which can be applied to increase website performance are:</span></p>
<ul>
<li><span style="color: #000000;">Automated listings finder – this allows identification of additional directory listing opportunities. It also ensures verification and updating of all listing information together</span></li>
<li><span style="color: #000000;">Review management tools notify businesses of new reviews across all platforms so that the business can respond suitably  </span></li>
</ul>
<p><span style="color: #000000;">Apart from these, Google has a range of tools to help every business build and maintain their own specialized <a style="color: #000000;" href="https://xinicomms.com/digital-marketing/seo/" target="_blank" rel="noopener noreferrer">local SEO</a> mechanisms. These include – Google Analytics, Google Search Console, Google My Business insights, Google tag manager and results of statistics and surveys.</span></p>
<p><span style="color: #000000;">The success of your local <a style="color: #000000;" href="https://xinicomms.com/digital-marketing/seo/">SEO</a> strategy is determined by how the business defines overall success. A well-structured plan should be developed which is scalable as well as open to modification. To really improve local presence, local SEO too should be monitored and fine-tuned in accordance with the business environment’s opportunities and threats. Local SEO optimization is a continuous process.</span></p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/digital-marketing-seo/">Digital SEO Strategy For 2019</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>How To Leverage On  Quora SEO Power For Digital Marketing Conversion</title>
		<link>https://xinicomms.com/digital-marketing-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=digital-marketing-3</link>
				<pubDate>Tue, 23 Apr 2019 10:20:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Marketing Communications]]></category>
		<category><![CDATA[Social Media Management]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[Digital Management]]></category>
		<category><![CDATA[Mobile web apps]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[PPC Services]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SEO Company In Lagos]]></category>
		<category><![CDATA[SEO Services]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[web ]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=3980</guid>
				<description><![CDATA[<p>How To Leverage On Quora SEO Power For Digital Marketing Conversion If there is an online social network with over 100 million users asking questions that they know will be answered back, do you think it’d be a good source to generate website traffic? Definitely! Quora is a kind of forum where anyone can pose [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/digital-marketing-3/">How To Leverage On  Quora SEO Power For Digital Marketing Conversion</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<h1>How To Leverage On Quora SEO Power For Digital Marketing Conversion</h1>
<p>If there is an online social network with over 100 million users asking questions that they know will be answered back, do you think it’d be a good source to generate website traffic?</p>
<p dir="ltr"><strong>Definitely!</strong></p>
<p dir="ltr">Quora is a kind of forum where anyone can pose questions and expect them to be answered. The Quora community also votes up to the most relevant and helpful answer which bubbles up higher than the other responses.</p>
<p dir="ltr">It’s true that the real impact of SEO is seen only after some time, PPC advertising gives different results. On the other hand, <a href="https://xinicomms.com/social-media-management-2/">social media</a> takes up a lot of time and energy and other forms of advertising becomes very expensive for your business vis a vis expected return. Therefore, the free traffic from Quora makes it an exciting platform worth considering.</p>
<p dir="ltr"><a href="https://xinicomms.com/digital-marketing/"><img class="alignnone wp-image-3981 size-large" src="https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-1024x564.jpg" alt="SEO Companies In Lagos Nigeria" width="1024" height="564" srcset="https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-1024x564.jpg 1024w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-300x165.jpg 300w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-768x423.jpg 768w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-281x156.jpg 281w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-685x377.jpg 685w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-570x314.jpg 570w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-490x270.jpg 490w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-370x204.jpg 370w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-270x149.jpg 270w, https://xinicomms.com/wp-content/uploads/2019/04/Gdjkdda-210x116.jpg 210w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
<h2 dir="ltr">How is Quora a unique platform?</h2>
<p dir="ltr">A lot of different platforms let you interact with your target audience – be it Twitter or Facebook. So, what makes Quora unique?</p>
<p dir="ltr">The best part about Quora is that you get to engage with your target audience when they are asking you questions. On Quora, you can step in and take part in an ongoing conversation centred around your offerings as well.  For instance, if you sell shoes, you can answer questions about fitness, exercise, running, weight loss tips, etc.</p>
<p dir="ltr">Note that every conversation that happen here will organically introduce your brand to the users as you can sneak a mention of the brand or the store (online or offline).</p>
<h2 dir="ltr">How can you leverage Quora traffic?</h2>
<h3 dir="ltr">1. Make an appealing profile</h3>
<p dir="ltr">The first thing that a Quora user does after reading your reply to a question is to visit your profile in order to know more about you. If they realise that you have an uninteresting page, they are not likely to trust the information provided by you. So, it makes sense to build your Quora profile for an enriching experience.</p>
<p dir="ltr"> A few tips:</p>
<ul>
<li dir="ltr">Use prominent headline to build your online image as a source of authority in your field.</li>
<li dir="ltr">Add some of your best accomplishments</li>
<li dir="ltr">Add your location and business title</li>
</ul>
<h3 dir="ltr">2. Pick the right/relevant topics</h3>
<p dir="ltr">When you customize your account, you are given an option to select from a wide range of topics that you may find interesting and Quora keeps you updated with the most recent questions asked based on your topic selection.</p>
<p dir="ltr">Thus, one of the best aspect of this is that you don’t have to go about hunting questions that you want to answer about your areas of interest.</p>
<p dir="ltr">What’s more? Quora even sends you notifications through emails about relevant questions that you may want to check out and try to answer them. You can even use the search bar to pick relevant questions to answer to sneak in your brand mention. So, it’s best to have a wider option in terms of interest to have more opportunities to answer questions with a fresh set of audience.</p>
<h3 dir="ltr">3. Impress with your knowledge</h3>
<p dir="ltr">Make sure you know your goal clearly while answering any question in order to establish yourself as an expert to have a great followers’ list on Quora. But providing an informative and detailed answer isn’t going to cut it; you will have to subtly leave an impression of you being an expert in different ways.</p>
<p dir="ltr">In order to do this, you need to have a professional profile picture and a strong headline. Furthermore, you need to pay a close attention to the tone you use while answering your questions. Slip in a sentence or two to highlight or focus on your professional expertise and experience to establish authority of an expert.</p>
<h3 dir="ltr">4. Provide helpful answers</h3>
<p dir="ltr">You shouldn’t compromise on providing value in order to establish your authority. People reach out to Quora to get a response for their query, so your first job is to provide a helpful answer with insightful information. If you do this in a consistent manner, then, gradually, you will generate a following – of people who actually trust you.</p>
<p dir="ltr">So, don’t be pretentious or fake being an expert because it can’t last for long so you can fumble over an answer which can reveal your lack of expertise. Address the problems of the users effectively to deliver value. If you continue to do it, your value will continue to increase and your brand awareness will eventually grow – leading to more traffic to your site.</p>
<h3 dir="ltr">5. You can also ask questions</h3>
<p dir="ltr">The best part about Quora is that you can get your questions answered as well. Being an expert shouldn’t stop you from asking questions. By asking questions, you can connect with your audience at large. You can run surveys, ask for a feedback, offers, etc. to improve on the quality of your product or service. This kind of market research on Quora will help you improve your overall product offering.</p>
<h3 dir="ltr">6. Insert Links</h3>
<p dir="ltr">Quora allows you to use hyperlinks within your answers. This helps in directing readers to your site. But, ensure that you don’t stuff your answers with links after links. There is an <a href="https://xinicomms.com/digital-marketing/">SEO</a> advantage to creating Quora backlinks to your site, do it organically and tactfully to make sure it doesn’t look forceful and do it only if adds value response you share on the platform.</p>
<p dir="ltr">The secret to being successful at leveraging Quora to generate website traffic is to provide helpful answers to genuinely help your readers and better serve their needs – which can eventually lead to more reach and greater impact to your busines</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/digital-marketing-3/">How To Leverage On  Quora SEO Power For Digital Marketing Conversion</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
		<item>
		<title>Digital Brand Management Strategies For Online Video Ads Marketing And Advertising</title>
		<link>https://xinicomms.com/video-ads-marketing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=video-ads-marketing</link>
				<pubDate>Wed, 10 Apr 2019 15:04:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Brand Activations]]></category>
		<category><![CDATA[Brand Consultancy For Launching Brands In West Africa]]></category>
		<category><![CDATA[Brand Management]]></category>
		<category><![CDATA[Branding, Printing & Logistics]]></category>
		<category><![CDATA[Campaign Strategy, Development & Activations]]></category>
		<category><![CDATA[Commercials (TV & Radio)]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Film Marketing]]></category>
		<category><![CDATA[Marketing Communications]]></category>
		<category><![CDATA[Prints Price List]]></category>
		<category><![CDATA[Public Relations]]></category>
		<category><![CDATA[Social Media Management]]></category>
		<category><![CDATA[Studios]]></category>
		<category><![CDATA[Talent Supply/Management & Voice Artiste]]></category>
		<category><![CDATA[Ads]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Animation Content]]></category>
		<category><![CDATA[Branded]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[campaigns]]></category>
		<category><![CDATA[Commercials]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Contents]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[Digital Management]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Online Videos]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[TV Commercials]]></category>
		<category><![CDATA[Video Ads]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">https://xinicomms.com/?p=3918</guid>
				<description><![CDATA[<p>XINI &#8211; Brand Relationship Strategist Across All Forms Of Advertising And Campaigns In Africa  CONTACT US With all motivations from strategico, today we would be sharing with you all you need to know to stay ahead and engaging in the world of media buying, advertising and general promotions that will keep your brand always on [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://xinicomms.com/video-ads-marketing/">Digital Brand Management Strategies For Online Video Ads Marketing And Advertising</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></description>
								<content:encoded><![CDATA[<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><strong>XINI &#8211; Brand Relationship Strategist Across All Forms Of Advertising And Campaigns In Africa </strong></p>
<blockquote class="wp-embedded-content" data-secret="boO7peHBlb"><p><a href="https://xinicomms.com/contact-us/">CONTACT US</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;CONTACT US&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/contact-us/embed/#?secret=boO7peHBlb" data-secret="boO7peHBlb" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p>With all motivations from strategico, today we would be sharing with you all you need to know to stay ahead and engaging in the world of media buying, advertising and general promotions that will keep your brand always on the landmark.</p>
<p>&#8220;Lets go there&#8221;</p>
<p>What I like about media buying is that it’s a well-defined process, data-based, that tells you clearly if your ad spending is generating positive ROI.</p>
<p>Well, it is possible to obtain crystal-clear insights, but only if you have the right strategy in place.</p>
<p>In this case study, you’ll discover how I doubled the CTR for one of my B2B clients and connected his company with 1K decision makers.</p>
<p>It’s a 5 step process that you can follow along and replicate for yourself. I call it…</p>
<h2>THE BULLSEYE <a href="https://xinicomms.com">MEDIA BUYING</a> STRATEGY</h2>
<p>Before implementing this strategy, the average CTR for my client’s Linkedin ads was a mere 0.7%. And with low engagement, sadly, comes a higher cost per click.</p>
<p>It took me four weeks to implement and execute this strategy, and the results were the following:</p>
<ul>
<li>The CTR doubled, we regularly had ctr of 1.5% or higher. Some ads got ctr of 6%.</li>
<li>As a result, the CPC went down.</li>
<li>The visitors were engaged and shared the promoted article more than 700 times</li>
</ul>
<p>Note that I used this strategy for Linkedin <a href="https://xinicomms.com/digital-marketing/">Ads</a> because it’s where my client’s audience is hanging out online, but it works with every ad platform.</p>
<p>Now it’s time to break down the step by step process I used.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1516706398059">
<div class="wpb_wrapper">
<p><strong>Bonus Material:</strong> <span class="tve-leads-two-step-trigger tl-2step-trigger-1630">Download our advanced b2b report</span> with 4 detailed strategies to generate more leads in a B2B market.</p>
<p>Buying ads with focus to a location can be quite challenging to those set of people who currently do not have the idea of the industry. With a city like Lagos, Nigeria we could pull through the thick and thin to ensuring that the maximum conversion needed from a marketing campaign is reached.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h2>STEP 1 – SMART MEDIA PLANNING TO GET YOUR AUDIENCE RIGHT</h2>
<p>Fail to plan your media buying strategy, and I guarantee that you won’t succeed.</p>
<p>This first step is essential, and it’s the foundation to your media buying empire: understand your audience, its frustrations, desires and struggles.</p>
<p>When you analyse your customers and come up with their demographics and psychographics details, you will be able to:</p>
<ul>
<li>Target the right audience every single time;</li>
<li>Don’t waste money on people that won’t convert;</li>
<li>Create ads that highly resonate with the audience more likely to buy from you.</li>
</ul>
<p><img class="aligncenter wp-image-1687 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/01/4-benefits-3.jpg" sizes="(max-width: 801px) 100vw, 801px" srcset="https://strategico.io/wp-content/uploads/2018/01/4-benefits-3.jpg 801w, https://strategico.io/wp-content/uploads/2018/01/4-benefits-3-300x269.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/4-benefits-3-768x689.jpg 768w" alt="" width="801" height="719" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/4-benefits-3.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/4-benefits-3.jpg 801w, https://strategico.io/wp-content/uploads/2018/01/4-benefits-3-300x269.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/4-benefits-3-768x689.jpg 768w" data-lazy-sizes="(max-width: 801px) 100vw, 801px" data-was-processed="true" /></p>
<p>The approaches We used:</p>
<h3>CUSTOMER INTERVIEWS TO GET TO KNOW PREVIOUS CLIENTS</h3>
<p>This method is a bit time consuming, but if you do it you will be ahead of 90% of the competition: it starts with customer interviews.<br />
I asked my client to connect me with five of their previous clients, willing to chat with me via Skype for 15-20 minutes.</p>
<p>The insight I acquired were golden. I wrote down the specific words they were using to describe their problem and the solutions that my client provided them.</p>
<p>I saved them words for later because I would have used them in the copy of my ad.</p>
<p>But what if you don’t have previous clients ready to talk to you?</p>
<blockquote class="wp-embedded-content" data-secret="boO7peHBlb"><p><a href="https://xinicomms.com/contact-us/">CONTACT US</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;CONTACT US&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/contact-us/embed/#?secret=boO7peHBlb" data-secret="boO7peHBlb" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<h3>HOW TO GATHER AS MUCH DATA AS POSSIBLE</h3>
<p>Whether you spoke with previous clients or not, I invite you to do the following.</p>
<p>First of all, speak to the CEO, VP of Strategy or any other person that can give you insights on the kind of clients they want to target. Understand what their dream client is. Take notes.</p>
<p>Now move to the sales team, and ask them which questions prospective clients usually ask them.</p>
<p>Double check your CRM and analyse what people submitted to the contact form.</p>
<p>And finally, my favourite: stalk the social network profiles of previous clients and dream clients. This is an essential move because it allows you to:</p>
<ul>
<li>See what these people are sharing on social networks</li>
<li>See which blogs and websites they follow.</li>
</ul>
<p><em><img class="aligncenter wp-image-1679 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/01/image2-1.jpg" sizes="(max-width: 808px) 100vw, 808px" srcset="https://strategico.io/wp-content/uploads/2018/01/image2-1.jpg 808w, https://strategico.io/wp-content/uploads/2018/01/image2-1-300x143.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/image2-1-768x366.jpg 768w" alt="" width="808" height="385" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/image2-1.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/image2-1.jpg 808w, https://strategico.io/wp-content/uploads/2018/01/image2-1-300x143.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/image2-1-768x366.jpg 768w" data-lazy-sizes="(max-width: 808px) 100vw, 808px" data-was-processed="true" /></em></p>
<p><em>The interests box at the bottom of every Linkedin profile.</em></p>
<p>We can now move to step 2, where we start to use all the info we gathered so far.</p>
<p>&nbsp;</p>
<h2>STEP 2 – CHOOSE THE RIGHT PLATFORM TO MAXIMIZE INTERACTIONS WITH YOUR TARGET AUDIENCE</h2>
<p>At least at the beginning, you don’t want to promote your services on every single ad platform. Instead, you should only focus on the one platform that can drive the biggest impact.</p>
<p>I focused only on Linkedin because I discovered that my audience was most active on that social network.</p>
<p>For you, it could be different:</p>
<ul>
<li>You may discover that lots of your dream <a href="https://xinicomms.com/brand-consultancy-for-launching-brands-in-west-africa/">clients</a> are following the financial times, so you may try Outbrain to place your ad on financial news websites.</li>
<li>Or you discover that your clients are following a specific brand on Facebook, so that would be your best ad channel.</li>
</ul>
<p>At this point, it also made sense to me to check my client’s competitors to see where they are most active online, and where their content is shared most. With Buzzsumo it’s really easy to do that. I just wrote the URL of the competitor, and I discovered where their top pages and articles were shared most.</p>
<p><img class="aligncenter wp-image-1680 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/01/image3-1.jpg" sizes="(max-width: 921px) 100vw, 921px" srcset="https://strategico.io/wp-content/uploads/2018/01/image3-1.jpg 921w, https://strategico.io/wp-content/uploads/2018/01/image3-1-300x210.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/image3-1-768x537.jpg 768w" alt="" width="921" height="644" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/image3-1.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/image3-1.jpg 921w, https://strategico.io/wp-content/uploads/2018/01/image3-1-300x210.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/image3-1-768x537.jpg 768w" data-lazy-sizes="(max-width: 921px) 100vw, 921px" data-was-processed="true" /></p>
<p><em>Nordstrom is doing a fantastic job to engage people on Facebook and Pinterest. I would promote on these two social media channels to maximise my ROAS.</em></p>
<p>Now that I know perfectly my client and where he is interacting online, it’s time to create my ads.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1516706881649">
<div class="wpb_wrapper">
<p><strong>PRO TIP</strong> – If you work in a B2B market you’ll want to take advantage of the granular targeting of Linkedin Ads. <span class="tve-leads-two-step-trigger tl-2step-trigger-1630">Discover how in my B2B media buying report</span>.</p>
</div>
<p>Lagos Nigeria is got the audience that easily trills Africa.</p>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h2>STEP 3 – TEST MULTIPLE ADS TO FIND THE MESSAGE THAT RESONATES BEST WITH YOUR AUDIENCE</h2>
<p>This step is crucial, and also one of the most overlooked. Most of the people simply create one ad and call it a day, but I wanted to discover the best ad possible for my ad campaign.</p>
<p>What I did was to craft 3 completely different messages that I thought would resonate with my audience… and I run them one against the other.</p>
<p>I did this because I’m applying a strategic approach to media buying.</p>
<p>I want data, not guesswork.</p>
<p>I want to be able to say <em>“Ok I tested three messages and there’s a clear winner. Let’s do more of that and delete the underperforming ads.”</em></p>
<p>At this step I didn’t simply change the background image (that comes later) – I created three messages that are completely different one to the other. I used different words, different offers and, of course, different images.</p>
<p>After two weeks I started to understand what resonates with my audience. And only at that point, I created variations of the winning ads testing multiple backgrounds, AB testing headlines and CTAs.</p>
<p><img class="aligncenter wp-image-1689 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2.jpg" sizes="(max-width: 776px) 100vw, 776px" srcset="https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2.jpg 776w, https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2-300x153.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2-768x393.jpg 768w" alt="" width="776" height="397" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2.jpg 776w, https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2-300x153.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/test-ads-concept-2-768x393.jpg 768w" data-lazy-sizes="(max-width: 776px) 100vw, 776px" data-was-processed="true" /></p>
<p>At this point, organisation and clarity are crucial: write a very descriptive name for every ad and ad group you create.</p>
<p>Don’t write “ad 1” “ad 2” “ad 3”, write “winter collection white coat” “winter collection blonde girl” instead.</p>
<p>Now that my three ads were ready, I focused on defining multiple audiences-.<br />
I came up with three different audiences, and I run my three ads for each audience. It’s a total of 9 ads that were running at the same time.</p>
<p>Do you see what I did here? I’m maximising my chance to find an ad that performs well because I’m running more AD concepts and show them to different niches of people.</p>
<p>Some ideas to get you started to find the perfect audience:</p>
<ol>
<li>Test a lookalike audience based on previous customers;</li>
<li>Test a retargeting audience;</li>
<li>Test a contextual audience (based on your dream client interests).</li>
</ol>
<p>Now that the ads and audiences are ready there’s one hot topic that needs to be addressed: price.</p>
<p><em>How much should I spend? How should I split my budget?</em></p>
<h2>STEP 4 – DIVIDE YOUR BUDGET IN 3 MONTHS TO GET MORE OUT OF IT</h2>
<p>It may seem counter intuitive, but spending less at the beginning of your ad campaign can lead to better results later.</p>
<p>Why?</p>
<p>Remember that in step 3 you just created several ads and several audiences, and you still don’t know which ones will perform better.</p>
<p>Give yourself minimum a week to run all your ads together and see if there are some clear losers (that you can turn off) and some clear winners (where you will invest more money).</p>
<p>If you have enough budget, you can do like me, and run extensive tests for eight weeks. After two full months, you’ll know exactly which ads are working or not, and you’ll have the key to scale and make even more out of your ads.</p>
<p><img class="aligncenter wp-image-1688 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2.jpg" sizes="(max-width: 802px) 100vw, 802px" srcset="https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2.jpg 802w, https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2-300x178.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2-768x456.jpg 768w" alt="" width="802" height="476" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2.jpg 802w, https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2-300x178.jpg 300w, https://strategico.io/wp-content/uploads/2018/01/test-ad-concepts-strategico-2-2-768x456.jpg 768w" data-lazy-sizes="(max-width: 802px) 100vw, 802px" data-was-processed="true" /></p>
<p>This is how I split my client’s budget.</p>
<p>MONTH 1</p>
<ul>
<li><strong>Test phase</strong> – After researching my target audience and competitors, I put together my best ideas and made some educated guesses on the message that would resonate better with my audience. I tested 3 ad concepts one against another. Just by doing that, I was able to spot underperforming ads (0.7% of CTR) and disable them to get more of my budget, running only ads with 1.5% CTR or higher.</li>
</ul>
<p>MONTH 2</p>
<ul>
<li><strong>Verify</strong> – I kept looking at the data from my ads, and I verified that the ads running were still performing well. If the CTR of an ad was dropping compared to month one, I was disabling it.</li>
<li><strong>Optimize</strong> – In the middle of Month 2, I started to know which was the best message, which words to use, and which concepts were driving more interactions to my ads. At this point, I was duplicating my ads and tweaking them a bit to decrease even more the CPC and get a better CTR.</li>
</ul>
<p>MONTH 3</p>
<ul>
<li><strong>Scale</strong> – Now there’s nothing else to do apart from investing more! I knew what was working well, so we used a bigger budget to drive even more visits, for a lower cost, to the website.</li>
</ul>
<p>The final question you may have for me is: I have all these great ads that are performing amazingly, but where should I drive traffic to maximise my ROI?</p>
<p>The answer is in the next and last step.</p>
<h2>STEP 5 – MAXIMIZE LEADS WITH A HIGH-CONVERTING PAGE.</h2>
<p>Mostly in the B2B world (but even for most every b2c offerings), a lead generation page can be everything you want it to be.</p>
<p>It can be a specific landing page, or article on your blog.</p>
<p>For my client, I used (and tweaked) one blog post that was deeply connected to his dream clients.</p>
<p>The key to generating leads was to <strong>insert a content upgrade</strong>: it’s a simple, locked, document that the reader can download filling up a form on the page.</p>
<p>It’s exactly what you see on this article. <span class="tve-leads-two-step-trigger tl-2step-trigger-1630">If you click this link, you can input your name and email</span> and I’ll send you four additional media buying strategies for B2B companies.</p>
<p>An easy way to create a link like this is by using <a href="https://sumo.com/" target="_blank" rel="noopener noreferrer">Sumo</a>. It’s a great plugin and it’s completely free when you are starting out. After you install it, just head over “List Builder” and create a new popup. Alternatively, you can use <a href="https://optinmonster.com/features/monsterlinks/" target="_blank" rel="noopener noreferrer">OptinMonster</a>.</p>
<p>An additional way to generate leads is by sending traffic to <strong>a simple (but effective) landing page</strong>.</p>
<p>Your page doesn’t need to have lots of elements or a fancy graphic, but it needs to have the right elements on it.</p>
<h3>THE PERFECT LANDING PAGE.</h3>
<p>First of all, remember that people that will land to your page have never been there before, so you should simplify the page as much possible and make it extremely easy for them to do what you want.</p>
<p>To do that, decide one single thing that you want your visitors to accomplish (for example, sign up for your newsletter, get a discount or download your white paper).</p>
<p>Second thing, the visitors need to see that the value of the offer is higher than the pain of leaving their email address on your website.</p>
<p>When you have these points clear in your mind, you can focus on the actual content of your landing page. Make sure to include as many of these elements:</p>
<p><img class="lazyloaded aligncenter wp-image-1690 size-full" src="https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2.jpg" sizes="(max-width: 801px) 100vw, 801px" srcset="https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2.jpg 801w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-190x300.jpg 190w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-768x1210.jpg 768w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-650x1024.jpg 650w" alt="Advertising Company" width="801" height="1262" data-lazy-src="https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2.jpg 801w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-190x300.jpg 190w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-768x1210.jpg 768w, https://strategico.io/wp-content/uploads/2018/01/top-elements-landing-page-1-2-650x1024.jpg 650w" data-lazy-sizes="(max-width: 801px) 100vw, 801px" data-was-processed="true" /></p>
<ol>
<li><strong>Vital Business Info</strong>: Logo, privacy policy, and the name of the company.</li>
<li><strong>Remove unnecessary, distracting elements</strong> like the navigation bar.</li>
<li><strong>Visible call to action</strong>: Make it easy to find the sign-up/download button</li>
<li><strong>Social proof</strong>: Has your company been featured somewhere important? Has your product been sold thousands of times? Write it to increase credibility.</li>
<li><strong>Catchy headline</strong>: Your headline should be compelling enough to make the reader continue reading.</li>
<li><strong>Relevant copy</strong>: It’s after the headline, it explains how you can solve the pain of your target customer. Use 2-3 short bullets points.</li>
<li><strong>Bonus – Urgency</strong>: If you can add real urgency to your landing page (limited availability, or time-sensitive promotions), conversions will increase.</li>
</ol>
<p>Next step: test. When your page is up and running, and you are getting data (like CTR and conversion rate), you can test more versions of your page. Create an entirely different page and compare the results.</p>
<h2>NOW YOU KNOW HOW TO CREATE A HIGHLY EFFECTIVE MEDIA BUYING CAMPAIGN</h2>
<p>You just learned my 5-step strategy to boost the performance of any media buying campaign.</p>
<p>The basic approach of creating a single ad, starting it and hoping for the best is a guarantee to fail. With my method, you’ll create a detailed strategy to minimize your risks and you’ll be sure to spend your ad budget better.</p>
<p>Get started, try your best and iterate based on the performance of previous ads! If you’d like us to help you implement an advertising strategy like this in your business, <a href="https://xinicomms.com/contact-us/" target="_blank" rel="noopener noreferrer">you can apply here</a>.</p>
<p>And if you got some value from this post, let me know in the comments below.</p>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525338764414 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner vc_custom_1525338771559">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopyblack">
<div class="wpb_wrapper">
<p>A new Facebook study <a href="http://tubularinsights.com/facebook-users-video-more-engaging-images/">revealed</a> that <strong>people spend 5 times longer watching video content</strong> than reading static content.</p>
<p>Gary Vaynerchuk, Larry Kim, and Neil Patel all used video ads to grow their audiences on every major social network, increase brand recall for their products and reach consumers at scale. But how can you take advantage of them?</p>
<p>In this guide, I’m going to show you:</p>
<ul>
<li>The 6 elements your video ads must have if you want to outperform your best static ads;</li>
<li>The 6-second <strong>non-skippable</strong> video ad that <strong>won’t annoy your users</strong>;</li>
<li>How to create a “thumb-stopping” effect that gets your target audience to watch your videos and buy from you.</li>
</ul>
<p>Ready? Let’s do it!</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525251353226 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-8">
<div class="vc_column-inner vc_custom_1524755143858">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<p class="vc_custom_heading">BONUS MATERIALS: Get my Video Ads Swipe File &amp; the PDF version of this article</p>
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Get my Video Ads Swipe file with 14 successful video ads you can take inspiration from, and a PDF copy of this article to read whenever you like.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p><span class="givemepdf"><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">Yes! Give me my PDFs <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/2b07.png" alt="⬇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></span></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520268937955 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading">Table of Contents</h3>
<div class="vc_empty_space"></div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter1" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/why-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/why-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/why-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/why-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/why-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/why-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/why-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/why-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter1">CHAPTER 1</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter1">Why you need to use video ads in 2019</a></p>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter2" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/video-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/video-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/video-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/video-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/video-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/video-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/video-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/video-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter2">CHAPTER 2</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter2">How to create an highly effective video ad</a></p>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter3" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/facebook-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-small.png 757w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/facebook-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-small.png 757w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter3">CHAPTER 3</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter3">Spread your message like wildfire with Facebook Video Ads</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter4" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/instagram-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/instagram-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/instagram-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/instagram-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/instagram-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/instagram-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter4">CHAPTER 4</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter4">Reach your dream client with Instagram Video Ads</a></p>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter5" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-small-2.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter5">CHAPTER 5</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter5">Connect with B2B decision makers with Linkedin Video Ads</a></p>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter6" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/grow-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/grow-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/grow-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/grow-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/grow-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/grow-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/grow-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/grow-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter6">CHAPTER 6</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter6">Maximize your reach tapping into additional video platforms</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter7" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/twitter-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/twitter-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter7">CHAPTER 7</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter7">Take advantage of advanced targeting with Twitter Video Ads</a></p>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter8" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/youtube-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/youtube-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter8">CHAPTER 8</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter8">Get high CTR with Youtube Video Ads</a></p>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure"><a class="vc_single_image-wrapper vc_box_border_grey" href="https://strategico.io/video-advertising/#chapter9" target="_self"><img class="vc_single_image-img attachment-thumbnail lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-small-150x150.png" sizes="(max-width: 150px) 100vw, 150px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/snapchat-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-small.png 756w" alt="" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-small-150x150.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-small-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/snapchat-small-300x300.png 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-small.png 756w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-was-processed="true" /></a></figure>
</div>
<p class="vc_custom_heading index-copy"><a href="https://strategico.io/video-advertising/#chapter9">CHAPTER 9</a></p>
<p class="vc_custom_heading"><a href="https://strategico.io/video-advertising/#chapter9">Target millennials with Snapchat Video Ads</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339194860 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter1"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1523377549748">CHAPTER 1</p>
<h2 class="vc_custom_heading">Why you need to use online video ads in 2019</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>With video ad spend to reach $20B by 2020, we know that more and more companies are investing in video advertising online.</p>
<p>Why? Because they work. From Lagos Nigeria to other parts of Africa we are sure that advertising is key</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p><strong>US Digital Video Ad Spending, 2017-2021 (billions)</strong></p>
<blockquote class="wp-embedded-content" data-secret="YZ6ppDI6BD"><p><a href="https://xinicomms.com/branding-printing-logistics/prints-price-list/">PRINTS PRICE LIST</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;PRINTS PRICE LIST&#8221; &#8212; XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria" src="https://xinicomms.com/branding-printing-logistics/prints-price-list/embed/#?secret=YZ6ppDI6BD" data-secret="YZ6ppDI6BD" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>In fact, the average time viewers spent watching video ads in 2017 has grown by 19% compared to the year before.</p>
<p>On top of that, the Video Completion Rate (Videos Played All the Way Through) reached a staggering 69% in 2017.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p><strong>Average video ads completion rate:</strong></p>
</div>
</div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img attachment-medium lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/grafico2.2-156x300.png" sizes="(max-width: 156px) 100vw, 156px" srcset="https://strategico.io/wp-content/uploads/2018/04/grafico2.2-156x300.png 156w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2-768x1474.png 768w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2-533x1024.png 533w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2.png 1254w" alt="" width="156" height="300" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/grafico2.2-156x300.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/grafico2.2-156x300.png 156w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2-768x1474.png 768w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2-533x1024.png 533w, https://strategico.io/wp-content/uploads/2018/04/grafico2.2.png 1254w" data-lazy-sizes="(max-width: 156px) 100vw, 156px" data-was-processed="true" /></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525338666357 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element vc_custom_1547574105350">
<div class="wpb_wrapper">
<p>But if you want to succeed with digital video ads in 2019, there are some things you should know.</p>
<p>First, like for every digital marketing channel, also the video space starts to get saturated (the <a href="https://optimizationup.com/diminishing-returns-performance-marekting/">law of diminishing returns</a> affects any kind of advertisement) and CTR is lower compared to previous years.</p>
<p>To win the video ad war, last year we saw <a href="https://blog.fyber.com/5-video-advertising-trends-to-watch-in-2018/">more companies competing with shorter ads</a>. To start, Snapchat limits ads to a max of 10 seconds, and also Facebook recommends video ads to be 15 seconds or shorter.</p>
<p><a href="https://www.iab.com/wp-content/uploads/2016/04/MBD_Tremor_IAB_Digital-Video-FINAL-4-8-16.pdf">IAB released a great research</a> and discovered that 10 second videos can help maximize impact among Millennials, who are particularly sensitive to mobile ad clutter. Mobile video ads for this audience should be well targeted, relevant and enjoyable to help maximize its potential impact.</p>
<p>An upside of shorter ads is that they allow more ab testing: it’s much easier to create four versions of a 10-second ad, than four versions of a 30-second ad, give the same budget and timeframe.</p>
</div>
</div>
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-8">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>The last trend, of course, is <b>about mobile.</b></p>
<p>In fact, mobile video viewing <a href="https://www.godaddy.com/garage/looking-ahead-to-mobile-video-ads-in-2018/">broke records in 2018</a>.</p>
<p>But that’s not all:</p>
<p><a href="https://www.mobilemarketer.com/news/forrester-mobile-will-drive-72-of-growth-in-online-video-ad-spend/525203/" target="_blank" rel="noopener">Forrester discovered</a> that mobile is forecast to account for 72% of the growth in spending on online video advertising in the next 5 years.</p>
<p>With a CTR higher than any other type of ad, you start to see why you should invest in video advertising.</p>
<p>But how do you plan and create an effective video ad?</p>
<p>Keep on reading, the answer is in chapter 2.</p>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<p class="vc_custom_heading vc_custom_1520501338087">Video ads have the highest click-through rate (CTR) of all <a href="https://xinicomms.com/digital-marketing/">digital marketing</a> ad formats.</p>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Source: <a href="https://www.invespcro.com/blog/online-video-advertising/" target="_blank" rel="noopener">Ayat Shukairy, Invesp</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row vc_row wpb_row vc_inner vc_row-fluid vc_custom_1529499749458 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-3">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img lazyloaded" title="if_Share_1214991" src="https://strategico.io/wp-content/uploads/2018/06/if_Share_1214991-160x160.png" alt="if_Share_1214991" width="160" height="160" data-lazy-src="https://strategico.io/wp-content/uploads/2018/06/if_Share_1214991-160x160.png" data-was-processed="true" /></div>
</figure>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-9">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<p class="vc_custom_heading">Liking the article so far? Give it a share!</p>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div class="swp_social_panel swp_horizontal_panel swp_flat_fresh swp_default_full_color swp_other_full_color swp_individual_full_color scale-100 scale-full_width" data-min-width="800" data-float-color="#ffffff" data-float="left" data-float-mobile="none">
<div class="nc_tweetContainer swp_linkedin" data-network="linkedin"><a class="nc_tweet" href="https://www.linkedin.com/cws/share?url=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F" target="_blank" rel="nofollow noreferrer noopener" data-link="https://www.linkedin.com/cws/share?url=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_linkedin_icon"></i><span class="swp_share">Share</span></span></span></span></a></div>
<div class="nc_tweetContainer swp_twitter" data-network="twitter"><a class="nc_tweet" href="https://twitter.com/intent/tweet?text=Discover+how+to+win+with+video+advertising+in+2019+with+the+ultimate+guide+by+Strategico.io&amp;url=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F&amp;via=mattgasparello" target="_blank" rel="nofollow noreferrer noopener" data-link="https://twitter.com/intent/tweet?text=Discover+how+to+win+with+video+advertising+in+2019+with+the+ultimate+guide+by+Strategico.io&amp;url=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F&amp;via=mattgasparello"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_twitter_icon"></i><span class="swp_share">Tweet</span></span></span></span></a></div>
<div class="nc_tweetContainer swp_facebook" data-network="facebook"><a class="nc_tweet" href="https://www.facebook.com/share.php?u=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F" target="_blank" rel="nofollow noreferrer noopener" data-link="https://www.facebook.com/share.php?u=https%3A%2F%2Fstrategico.io%2Fvideo-advertising%2F"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_facebook_icon"></i><span class="swp_share">Share</span></span></span></span></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339266442 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="row vc_row wpb_row vc_inner vc_row-fluid vc_custom_1525339050336">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter2"></a></div>
<div>https://xinicomms.com/contact-us/</div>
</div>
<p class="vc_custom_heading vc_custom_1523377571488">CHAPTER 2</p>
<h2 class="vc_custom_heading">How to Create an Highly Effective Online Video Advertisement</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>So you want to create a video ad. Where should you start?</p>
<p>It’s simple: from a detailed plan.</p>
<p>Who fails to plan, plans to fail, they say, and this is absolutely true for video ads, that require a good investment of time and money.</p>
<p>In this chapter, you’ll discover how to optimize your ad budget for maximum results, and the best practices to create an high-impact ad.</p>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my video ads swipe file with 14 successful video ads.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525338653899 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">#1: Plan before you buy</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element vc_custom_1523966133247">
<div class="wpb_wrapper">
<p>The goal of<a href="https://en.wikipedia.org/wiki/Media_planning"> media planning</a> is to determine the best combination of media to achieve the marketing campaign objectives. In our case, we‘ll plan for the creation and the promotion of the best video ad possible.</p>
<p>The upside of media planning: you create a comprehensive strategy so you’ll know where you are going and you won’t waste your budget creating an ad that doesn’t convert.</p>
<p>The downsides? None. It’s a crucial step that should never be overlooked.</p>
<p>What I want you to do is to get to know your customer and write down everything you may need for your video ad: the exact words to use, the features of your product you should mention, which social networks to use to promote your web video ad.</p>
<p>You have several ways to gather this data:</p>
<p>&nbsp;</p>
<p><b>MEDIA PLANNING STRATEGY N. 1 – CUSTOMERS INTERVIEWS</b></p>
<p>Find five previous customers willing to chat with you on the phone for 15-20 minutes, and understand why they bought from you.</p>
<p>Write down the exact words they are using to describe your product (you’ll use them later in your ad).</p>
<p>Understand where they hang out online: you’ll use this info to understand which channels use to promote your video.</p>
<p>&nbsp;</p>
<p><b><span style="color: #000000;"><a style="color: #000000;" href="https://xinicomms.com">MEDIA PLANNING STRATEGY</a> </span>2 – GATHER AS MUCH DATA AS POSSIBLE</b></p>
<p>ASK AROUND – Talk with the CEO, VP of Strategy and anyone else from leadership that can give insights on who their dream client is.</p>
<p>TALK WITH SALES – What do prospective clients ask them?</p>
<p>CHECK THE CRM – What are people saying when they contact the company?</p>
<p>STALK CUSTOMERS ONLINE – Get the name and surname of 20 past clients and check them online. Discover which social networks they use every day, what content they share, and which pages they follow.</p>
<p>&nbsp;</p>
<p><i><img class="aligncenter size-full wp-image-1805 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/image36.png" sizes="(max-width: 808px) 100vw, 808px" srcset="https://strategico.io/wp-content/uploads/2018/04/image36.png 808w, https://strategico.io/wp-content/uploads/2018/04/image36-300x143.png 300w, https://strategico.io/wp-content/uploads/2018/04/image36-768x366.png 768w" alt="" width="808" height="385" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/image36.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/image36.png 808w, https://strategico.io/wp-content/uploads/2018/04/image36-300x143.png 300w, https://strategico.io/wp-content/uploads/2018/04/image36-768x366.png 768w" data-lazy-sizes="(max-width: 808px) 100vw, 808px" data-was-processed="true" /></i></p>
<p><em>The interests box at the bottom of every Linkedin profile.</em></p>
<p>&nbsp;</p>
<p><b>MEDIA PLANNING STRATEGY 3 – CHECK YOUR COMPETITORS</b></p>
<p>You should also check what your competitors are doing online.</p>
<p>By using Buzzsumo, you can understand which topics are getting the most shares (these can be useful ideas for your videos) and in which platforms they are being shared.</p>
<p>You see where I’m going with this?</p>
<p>You are making your life easier because with these three strategies you understand what your customers want to hear, and where they want to hear it.</p>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1523295263696">
<div class="wpb_wrapper">
<p><strong>PRO TIP: </strong>To get more insights and a real example of a detailed media planning and media buying strategy, you should check out <span style="color: #000000;"><a style="color: #000000;" href="https://xinicomms.com/top-brand-management-and-media-agencies-in-lagos-nigeria/">Top Brand Management Company In Lagos Nigeria</a></span></p>
</div>
</div>
<div class="vc_empty_space"></div>
<h3 class="vc_custom_heading h3">#2: How to put together your video ad</h3>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Now that you know who you are talking to, and what your prospective customers want to listen, it’s time to put together your video ad.</p>
<p>Here some tips for a great ad.</p>
<p>&nbsp;</p>
<p><b>1. Recording tips</b></p>
<p>If you are recording the video yourself, you should put together a script, understand how your camera works, how to set up a basic studio and how to cut and compose the video. <a href="https://blog.hubspot.com/marketing/video-marketing">Hubspot created the best guide I found online on the topic</a>.</p>
<p>&nbsp;</p>
<p><b>2. Create a video listicle</b></p>
<p>If you don’t have the resources to create a professional video with talking heads, you can create short listicles, <a href="https://www.dennis-yu.com/how-business-insider-creates-decent-facebook-videos-with-ease/">precisely like Business Insider does</a>.</p>
<p>A video listicle is a short video that features a list of interesting facts on a specific topic, and it’s quite straightforward to create. You can use it as a teaser for an in-depth article or show some key features of your product.</p>
<p>There are several tools you can use to easily create videos. With<a href="https://www.magisto.com/"> Magisto</a> you can upload your single photo shots and images to Magisto, choose a theme, and the tool will put them together for you with AI.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1806 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/magisto.jpg" sizes="(max-width: 605px) 100vw, 605px" srcset="https://strategico.io/wp-content/uploads/2018/04/magisto.jpg 1141w, https://strategico.io/wp-content/uploads/2018/04/magisto-300x235.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/magisto-768x602.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/magisto-1024x802.jpg 1024w" alt="" width="605" height="474" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/magisto.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/magisto.jpg 1141w, https://strategico.io/wp-content/uploads/2018/04/magisto-300x235.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/magisto-768x602.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/magisto-1024x802.jpg 1024w" data-lazy-sizes="(max-width: 605px) 100vw, 605px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>If you want to create videos entirely from zero, I recommend<a href="https://animoto.com/business"> Animoto</a> or<a href="https://www.animatron.com/wave"> Wave.Video</a>. I created the video above with Wave: it’s more expensive than Animoto, but it has more features than other online tools I tried. I liked it because it’s easy to resize a video for the different social networks with just a few clicks, and there’re lots of text effects.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1807 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/wave-video.jpg" sizes="(max-width: 735px) 100vw, 735px" srcset="https://strategico.io/wp-content/uploads/2018/04/wave-video.jpg 1600w, https://strategico.io/wp-content/uploads/2018/04/wave-video-300x134.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/wave-video-768x343.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/wave-video-1024x457.jpg 1024w" alt="" width="735" height="328" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/wave-video.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/wave-video.jpg 1600w, https://strategico.io/wp-content/uploads/2018/04/wave-video-300x134.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/wave-video-768x343.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/wave-video-1024x457.jpg 1024w" data-lazy-sizes="(max-width: 735px) 100vw, 735px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>And if you need completely free stock videos, I got you covered too with<a href="https://videos.pexels.com/"> Pexels</a>. You can thank me later!</p>
<p>&nbsp;</p>
<p><b>3. Design with mobile in mind</b></p>
<p>From the moment of conception, you need to be<a href="https://www.agorapulse.com/blog/video-optimization-tips"> thinking about your video</a> in terms of mobile devices first, everything else second.</p>
<p>First, because most of the people will be seeing your video ad from mobile anyway, second because some apps (like Snapchat) are mobile only.</p>
<p>Some best practices to<a href="https://www.iab.com/wp-content/uploads/2016/04/MBD_Tremor_IAB_Digital-Video-FINAL-4-8-16.pdf"> get mobile ads right</a>:</p>
<ol>
<li>Consumers are sensitive to mobile ad clutter: ads should be well targeted, relevant and enjoyable.</li>
<li>Brand logos, brand cues and product shots are large enough to be easily seen on smaller mobile screens.</li>
<li>Create ads that can still convey a message if shortened to 10-20 seconds.</li>
<li>The initial frames of an ad should be well branded and engage to capture consumers’ attention and still have an impact if closed or skipped.</li>
<li>30-second ads can be considered for mobile if the goals are to communicate complex information, to increase persuasion among consumers ages 35+ or to drive consumers to take action.</li>
</ol>
<p>&nbsp;</p>
<p><b>4. Experiment with shorter ads</b></p>
<p>Ads shorter than 15 seconds (but that are usually around 6 sec) are<a href="https://www.thinkwithgoogle.com/advertising-channels/video/stories-marketing-strategy-video-bumper-ads/"> gaining momentum</a> because they are successful at capturing the attention via mobile.</p>
<p>When you can use a 30 sec ad to tell your full story, you can experiment with a 15 sec version to improve reach and frequency, reinforce your message, and reduce overall campaign costs.</p>
<p><img class="aligncenter wp-image-1808 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads.png" sizes="(max-width: 804px) 100vw, 804px" srcset="https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads.png 1025w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-300x64.png 300w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-768x163.png 768w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-1024x218.png 1024w" alt="" width="804" height="171" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads.png 1025w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-300x64.png 300w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-768x163.png 768w, https://strategico.io/wp-content/uploads/2018/04/google-shorter-ads-1024x218.png 1024w" data-lazy-sizes="(max-width: 804px) 100vw, 804px" data-was-processed="true" /></p>
<p><em>Online advertising research by Google</em></p>
<p>&nbsp;</p>
<p>There are three main ways you can take advantage of them.</p>
<p>&nbsp;</p>
<p><b>Tease</b></p>
<p>You can use a short ad to seed an idea, and reveal the full story with a longer ad weeks later.</p>
<p><a href="https://www.youtube.com/watch?v=iZJNdv6kWZg" target="_blank" rel="noopener">Example of a tease video ad made by KFC</a>.</p>
<p>&nbsp;</p>
<p><b>Amplify</b></p>
<p>Run your long and short ad together to increase ad recall.</p>
<p>&nbsp;</p>
<p><b>Echo</b></p>
<p>When your primary campaign is finishing, you can connect short ads to retargeting (<a href="http://www.einsteinmarketer.com/video-retargeting-marketing/" target="_blank" rel="noopener">read here</a> if you want to learn how to do effective retargeting video ads) to increase ad recall and convert more viewers, by showing your short ad only to people that saw your full-length video.</p>
<p>For any online video advertising platform you choose, just make sure to follow the guidelines below to create ads of the appropriate length.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-2127 size-full lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/platform-length4.jpg" sizes="(max-width: 1883px) 100vw, 1883px" srcset="https://strategico.io/wp-content/uploads/2018/04/platform-length4.jpg 1883w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-300x142.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-768x364.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-1024x486.jpg 1024w" alt="" width="1883" height="893" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/platform-length4.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/platform-length4.jpg 1883w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-300x142.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-768x364.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/platform-length4-1024x486.jpg 1024w" data-lazy-sizes="(max-width: 1883px) 100vw, 1883px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p><b>5. Design with sound off</b></p>
<p>As part of your efforts to think about the mobile platform first, design videos that can be fully understood and enjoyed with the sound off. After all,<a href="https://www.wired.com/2016/02/the-best-sound-for-video-ads-on-facebook-is-silence/"> the best sound for facebook video ads is silence</a>.</p>
<p>Use text overlays to convey essential points and always use titles, captions and similar techniques so that people know what is going on.</p>
<p>Netflix is, of course, doing it right:</p>
<p><a href="https://www.facebook.com/UnfortunateEventsNetflix/videos/1902929599926989/" target="_blank" rel="noopener"><img class="aligncenter size-full wp-image-1832 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events.jpg" sizes="(max-width: 471px) 100vw, 471px" srcset="https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events.jpg 471w, https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events-150x150.jpg 150w, https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events-300x298.jpg 300w" alt="" width="471" height="468" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events.jpg 471w, https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events-150x150.jpg 150w, https://strategico.io/wp-content/uploads/2018/04/Netflix_A_Series_of_Unfortunate_Events-300x298.jpg 300w" data-lazy-sizes="(max-width: 471px) 100vw, 471px" data-was-processed="true" /></a></p>
<p>&nbsp;</p>
<p>One nice exception is Snapchat that starts ads with the volume on by default.</p>
<p>&nbsp;</p>
<p><b>6. Check your progress</b></p>
<p>As Kim Larson from Google points out, you should make sure to<a href="https://www.thinkwithgoogle.com/marketing-resources/data-measurement/online-video-marketing-strategy-google-brandlab/"> measure progress with the right metric</a>.</p>
<p>Don’t simply track views, but use KPIs that make sense to your business goals.</p>
<p>The beauty of video advertising online is that, unlike with television, we actually can measure every different metric in real time, so follow Kim’s advice and make sure to track the ones most important to you.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1809 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals.png" sizes="(max-width: 853px) 100vw, 853px" srcset="https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals.png 1001w, https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals-300x138.png 300w, https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals-768x354.png 768w" alt="" width="853" height="393" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals.png 1001w, https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals-300x138.png 300w, https://strategico.io/wp-content/uploads/2018/04/measuring-brand-marketing-goals-768x354.png 768w" data-lazy-sizes="(max-width: 853px) 100vw, 853px" data-was-processed="true" /></p>
<p>Image from: <a href="https://www.thinkwithgoogle.com/marketing-resources/data-measurement/online-video-marketing-strategy-google-brandlab/" target="_blank" rel="noopener">Think With Google</a></p>
<p>&nbsp;</p>
<p>Now that you know how to plan your video advertising strategy, how to create your video and how to track the results, we can finally start buying ads. The next chapters will guide you to create video ads in the most important advertising platforms online.</p>
<p>Let’s go!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339781622 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter3"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1523377600797">CHAPTER 3</p>
<h2 class="vc_custom_heading">Spread your message like wildfire with Facebook Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Facebook provides incredible opportunities to target the perfect customer on granular levels.</p>
<p>With Facebook video ads, you can take advance of metrics like personal interests, locations, website visits, custom and lookalike audience.</p>
<p>Whether if you are a B2B or B2C marketer, you should have Facebook video ads as part of your digital marketing strategy.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Facebook Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<h3 class="vc_custom_heading h3">How to make the most out of Facebook Video Ads</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>On Facebook, <strong>users aren’t forced to watch your video ad</strong> to get to the next thing in their newsfeed. 98% of the time they just scroll right past your video ad. So Larry Kim (CEO of <a href="https://mobilemonkey.com/" target="_blank" rel="noopener">MobileMonkey</a>) tells people to <strong>make the ad’s pitch in reverse</strong>.</p>
<p>Make sure that the “explosions” are happening at the very beginning of your Facebook Ads, to capture attention immediately, and then later explain the why/how.</p>
<p>If you want to create a Facebook video ad that really stands out, I’ll share with you some advanced tactics in a bit.</p>
<p>But right now, let’s focus on the basics. Here some guidelines and best practices you should always follow for video ads on Facebook:</p>
<ul>
<li>Use square videos (1:1). They take up 78% more real estate in a person’s mobile newsfeed than landscape video (16:9).<a href="https://blog.bufferapp.com/square-video-vs-landscape-video"> Studies show</a> that 1:1 outperforms landscape videos by 30-35%</li>
<li>Think silent.<a href="http://digiday.com/platforms/silent-world-facebook-video/"> 85% of videos are viewed</a> on Facebook without sound, so make sure to add captions.</li>
<li>Facebook’s Autoplay will<a href="https://marketingland.com/whats-a-video-view-on-facebook-only-3-seconds-vs-30-at-youtube-128311"> count 3 seconds as a “view”</a>, so make the first 3 seconds count.</li>
<li>Use high-resolution: 720p or 1080p HD.</li>
<li>Facebook video ads recommended length: 15 seconds or shorter.</li>
<li>Use as less text as possible in the ad image preview. Facebook may block your video ad if there is lots of text on top or around your video.</li>
</ul>
<p>And now the advanced tactics you were all waiting for.</p>
<p><img class="alignnone size-medium wp-image-3565" src="https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-300x232.jpg" alt="Photography And Videography in Lagos" width="300" height="232" srcset="https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-300x232.jpg 300w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-768x593.jpg 768w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-1024x791.jpg 1024w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-685x529.jpg 685w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-570x440.jpg 570w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-490x379.jpg 490w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-370x286.jpg 370w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-270x209.jpg 270w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2-210x162.jpg 210w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-2.jpg 1600w" sizes="(max-width: 300px) 100vw, 300px" /> <img class="alignnone size-medium wp-image-3566" src="https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-300x232.jpg" alt="" width="300" height="232" srcset="https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-300x232.jpg 300w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-768x594.jpg 768w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-1024x792.jpg 1024w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-685x529.jpg 685w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-570x441.jpg 570w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-490x379.jpg 490w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-370x286.jpg 370w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-270x209.jpg 270w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3-210x162.jpg 210w, https://xinicomms.com/wp-content/uploads/2018/10/Slider-3.jpg 1599w" sizes="(max-width: 300px) 100vw, 300px" /></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Use the combo video + Facebook lead generation forms</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>As Hope Horner from <a href="https://www.lemonlight.com/" target="_blank" rel="noopener">Lemonlight</a> pointed out, if you use this strategy right, <a href="http://www.convinceandconvert.com/social-media-strategy/drive-strategy-with-facebook-video-ads/">it can be a marketing goldmine</a>.<a href="https://www.facebook.com/business/news/lead-ads-launch"> Lead ads</a> allow users to share their contact info directly on Facebook, which can result in more subscribers than driving them to an external landing page.</p>
<p>You can later use the leads as you want: add them to your newsletter or use them to create custom and lookalike audiences.</p>
<p>The video comes in handy if you are promoting a physical location or a saas. For example, you can:</p>
<ul>
<li>Showcase your offering with video (like a coworking space or a gym) and offer a free day pass.</li>
<li>Do you have a restaurant? Show videos of your food and offer a 2-for-1 voucher upon signing up.</li>
<li>Do you run a saas? Show some features of your program and offer a free trial.</li>
</ul>
<p>To create the best lead video ad of the whole internet, simply log into Facebook Ads manager and choose “Lead Generation”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1818 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation.jpg" sizes="(max-width: 584px) 100vw, 584px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation.jpg 998w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation-300x256.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation-768x655.jpg 768w" alt="" width="584" height="498" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation.jpg 998w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation-300x256.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-lead-generation-768x655.jpg 768w" data-lazy-sizes="(max-width: 584px) 100vw, 584px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Define your audience like you would usually do for any facebook ad.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1819 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience.jpg" sizes="(max-width: 543px) 100vw, 543px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience.jpg 629w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience-300x276.jpg 300w" alt="" width="543" height="500" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience.jpg 629w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-audience-300x276.jpg 300w" data-lazy-sizes="(max-width: 543px) 100vw, 543px" data-was-processed="true" /></p>
<p>Upload your video.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1820 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video.jpg" sizes="(max-width: 770px) 100vw, 770px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video.jpg 924w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video-300x92.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video-768x234.jpg 768w" alt="" width="770" height="235" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video.jpg 924w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video-300x92.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-upload-video-768x234.jpg 768w" data-lazy-sizes="(max-width: 770px) 100vw, 770px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now you can finally create your form. Make sure to ask only for the essential info, if you want to maximise signups, or to add more fields if you’re looking for fewer but more qualified leads.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1821 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form.jpg" sizes="(max-width: 537px) 100vw, 537px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form.jpg 647w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form-300x265.jpg 300w" alt="" width="537" height="474" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form.jpg 647w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-form-300x265.jpg 300w" data-lazy-sizes="(max-width: 537px) 100vw, 537px" data-was-processed="true" /></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Create a custom audience from video views</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Imagine being able to target only people that love your content so much that they watch your videos until the end.</p>
<p>Well, Facebook allows you to do precisely that (and much more) to re-engage users and drive more conversions.</p>
<p>In fact, it’s possible to create an<a href="https://www.facebook.com/business/help/1099865760056389"> engagement custom audience</a> of people who’ve interacted with your video on Facebook:</p>
<ul>
<li>People who viewed at least 3 seconds of your video</li>
<li>People who viewed at least 10 seconds of your video</li>
<li>People who viewed at least 25% of your video</li>
<li>People who viewed at least 50% of your video</li>
<li>People who viewed at least 75% of your video</li>
<li>People who viewed at least 95% of your video</li>
</ul>
<p>With this strategy,  someone can view your video — with or without sound — and automatically be added to an audience to target later.</p>
<p><strong>How you do it:</strong></p>
<p>1 – Go to your Audiences, click the Create Audience drop-down and choose Custom Audience.</p>
<p><img class="aligncenter size-full wp-image-1822 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience.jpg" sizes="(max-width: 330px) 100vw, 330px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience.jpg 330w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience-300x156.jpg 300w" alt="" width="330" height="172" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience.jpg 330w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-create-custom-audience-300x156.jpg 300w" data-lazy-sizes="(max-width: 330px) 100vw, 330px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>2 – Click Engagement</p>
<p><img class="aligncenter size-full wp-image-1823 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list.jpg" sizes="(max-width: 545px) 100vw, 545px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list.jpg 545w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list-300x242.jpg 300w" alt="" width="545" height="440" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list.jpg 545w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-list-300x242.jpg 300w" data-lazy-sizes="(max-width: 545px) 100vw, 545px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>3 – Click video</p>
<p><img class="aligncenter wp-image-1824 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video.jpg" sizes="(max-width: 478px) 100vw, 478px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video.jpg 533w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video-300x115.jpg 300w" alt="" width="478" height="184" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video.jpg 533w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-engagement-video-300x115.jpg 300w" data-lazy-sizes="(max-width: 478px) 100vw, 478px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>4 – In the “Engagement” field, choose the amount of time you want people in your audience to have spent viewing your video.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1825 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched.jpg" sizes="(max-width: 446px) 100vw, 446px" srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched.jpg 586w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched-300x163.jpg 300w" alt="" width="446" height="243" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched.jpg 586w, https://strategico.io/wp-content/uploads/2018/04/facebook-ads-video-watched-300x163.jpg 300w" data-lazy-sizes="(max-width: 446px) 100vw, 446px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>5 – Click on “choose videos” and choose a video that you previously shared on your Facebook or Instagram page.</p>
<p>&nbsp;</p>
<p>Congrats, you can now target this audience with a new ad!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Create perfect loop video</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Perfect loops are like good GIFS: videos that seamlessly blend from end to beginning.</p>
<p>They are easy to make and great if you are on a budget, but you still want to create beautiful looking mini-videos.</p>
<p>They are ideal for social because the viewer can’t understand when the video finishes (it’s in a perfect loop), so they help to get more people to watch your videos till the end, or more.</p>
<p>One example:</p>
<p>&nbsp;</p>
<p><a href="https://www.instagram.com/p/BTCEXIZFjZu/?utm_source=ig_embed" target="_blank" rel="noopener"><img class="aligncenter size-full wp-image-1826 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_.jpg" sizes="(max-width: 512px) 100vw, 512px" srcset="https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_.jpg 512w, https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_-150x150.jpg 150w, https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_-300x298.jpg 300w" alt="" width="512" height="509" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_.jpg 512w, https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_-150x150.jpg 150w, https://strategico.io/wp-content/uploads/2018/04/adidas_su_Instagram___This_cosmic_oasis_we_call_home__Find_focus_this_Earth_Week___ZNE_-300x298.jpg 300w" data-lazy-sizes="(max-width: 512px) 100vw, 512px" data-was-processed="true" /></a></p>
<p>&nbsp;</p>
<p>If you want to create a perfect loop, you have several options.</p>
<p>&nbsp;</p>
<p><strong>1# strategy: Giphy</strong></p>
<p>Go to Giphy, download a gif in MP4 video format. You are done.</p>
<p><img class="aligncenter size-full wp-image-1827 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/High-Five-Barney-Stinson.gif" alt="" width="200" height="220" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/High-Five-Barney-Stinson.gif" data-was-processed="true" /></p>
<p>Source: <a href="https://giphy.com/gifs/high-five-how-i-met-your-mother-barney-stinson-mHEes6Quf8XK0" target="_blank" rel="noopener">Gyphy</a></p>
<p><b>2# strategy – iMovie</b></p>
<p>Open a video you own in iMovie and cut a single scene that you can play on a loop.</p>
<p>Save.</p>
<p>Use as your video ad.</p>
<p>&nbsp;</p>
<p><b>3# strategy – Specific software.</b></p>
<p><a href="https://flixel.com/">Flixel</a> specialises in “cinemagraphs”, mini videos composed of a part (usually the main subject) that doesn’t move, and another part (usually the background) that moves. Exactly like in the Adidas example above.</p>
<p>There’s a free trial for iOS and MacOS.</p>
<p>Alternatively, try Animoto: upload a video you own to their website, choose a 5-second frame that would be nice in a loop, add filters and some copy, and you are done. It’s similar to the iMovie strategy but easier to use and with more available effects.</p>
<p>With this, we conclude Facebook video ads.</p>
<p>Next up: Instagram!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339796302 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter4"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1523972915792">CHAPTER 4</p>
<h2 class="vc_custom_heading">Reach your dream client with Instagram Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Instagram video ads are ideal if you want to increase web traffic sales and drive awareness.</p>
<p>With the help of highly-visual content, you can get users to engage with your posts and show off your B2C offerings.</p>
<p>But why should you advertise on Instagram in the first place?</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img lazyloaded" title="instagram-big" src="https://strategico.io/wp-content/uploads/2018/04/instagram-big-150x150.png" alt="instagram-big" width="150" height="150" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/instagram-big-150x150.png" data-was-processed="true" /></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Instagram Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Overview</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><b>Let’s start with some stats:</b></p>
<ol>
<li><a href="https://techcrunch.com/2016/11/01/instagram-shoppable-photos/">A study by Instagram</a> found that 60% of their users learn about products and services through the platform, and 75% of them took actions such as visiting sites, searching, or telling a friend after seeing an Instagram post.</li>
<li>Again,<a href="http://blog.business.instagram.com/post/120537653811/the-next-steps-for-ads-on-instagram-new-formats/embed"> Instagram looked at more than 400 campaigns</a> globally and found out that ad recall from their ads was 2.8 times higher than Nielsen’s norms for online advertising.</li>
</ol>
<p>As you can see, Instagram is a great platform to advertise, but before starting your next media buying campaign you should ask yourself:</p>
<p>&nbsp;</p>
<p><b>Is my target audience on instagram?</b></p>
<p>Let’s start with demographics.</p>
<p><a href="https://www.statista.com/statistics/248769/age-distribution-of-worldwide-instagram-users/">According to Statista</a>, in January 2018 the most active Instagram users were men and women, 18 to 34 years old (61%).</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1834 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/statista-survey.jpg" sizes="(max-width: 588px) 100vw, 588px" srcset="https://strategico.io/wp-content/uploads/2018/04/statista-survey.jpg 687w, https://strategico.io/wp-content/uploads/2018/04/statista-survey-300x193.jpg 300w" alt="" width="588" height="378" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/statista-survey.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/statista-survey.jpg 687w, https://strategico.io/wp-content/uploads/2018/04/statista-survey-300x193.jpg 300w" data-lazy-sizes="(max-width: 588px) 100vw, 588px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>With this in mind, you should understand if your target audience talks about your industry/product/service on Instagram.</p>
<p><a href="https://www.facebook.com/iq/articles/growing-up-in-a-visual-world">Facebook surveyed 11,000 young adults</a> and, from their video advertising research, they discovered that some of the most popular topics on Instagram are the following:</p>
<p><i>Fashion/beauty, food, TV/films, hobbies, music.</i></p>
<p>Finally, ask yourself: can we create visual content that blends into our target audience’s Instagram feed?</p>
<p>According to the same Facebook study above, “Instagrammers appreciate aesthetic quality in visual content”. Instagram is a visual-first platform, where visual content, rather than text, is the primary form of communication.</p>
<p>If your product/service tick all the three boxes above, congratulations. Instagram is the perfect platform for your brand!</p>
<p>&nbsp;</p>
<p><b>Let’s see some best practices to maximize the effectiveness of your ads.</b></p>
<ul>
<li>Use the right format: square format (1:1) works best if posting on the Instagram feed;  Buffer<a href="https://blog.bufferapp.com/square-video-vs-landscape-video"> discovered</a> that it costs 33% less than landscape. Use vertical format (9:16) for stories.</li>
<li>Create videos with audio for stories, create videos without sound in the feed (more on this below)</li>
<li>Since users will click on ads from the Instagram app, you should optimize your landing page for mobile first.</li>
<li>Create content that blends in with the organic feed. To stand out, create videos that are beautiful, thoughtfully composed and artfully presented.</li>
</ul>
<p>&nbsp;</p>
<p><b>Facebook vs. Instagram video ads</b></p>
<p>Since the two platforms are considerably different,<a href="https://marketingland.com/instagram-winning-brands-video-budgets-despite-controversial-sales-strategy-176972"> Marketing Land points out that</a> long and conversion-centric content should live on Facebook, while you should leave Instagram to the artsy, visually appealing videos.</p>
<p>Instagram ads use the same advertising system as Facebook. You can specify your target audience’s location, demographics, interests, behaviors, and more. You can even target people who have bought from you or interacted with you and others like them.</p>
<p>As a result, you can use the same strategies that we discussed on the Facebook ads chapter, and apply them to the two types of Instagram video ads available to you: stories and native.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Stories Video Ads Best practices</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Stories ads run in a full screen, vertical format. This means all your Stories video ads format must be portrait (9:16 aspect ratio).</p>
<p><a href="https://rocketium.com/academy/understanding-instagram-video-ads/">With 60% of stories viewed with sound-on</a>, be sure to share content that sounds as good as it looks.</p>
<p>You can also experiment with text overlays. Videos with text on top work very well compared to non-text videos to build brand awareness or to drive action through purchases and installs.</p>
<p>Why should you use story ads? Because the use of Instagram Stories<a href="https://techcrunch.com/2017/06/20/instagram-live-video-replays/"> is growing</a>.</p>
<p>A lot:</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-1835 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users.png" sizes="(max-width: 680px) 100vw, 680px" srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users.png 680w, https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users-300x169.png 300w" alt="" width="680" height="383" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users.png 680w, https://strategico.io/wp-content/uploads/2018/04/instagram-stories-daily-active-users-300x169.png 300w" data-lazy-sizes="(max-width: 680px) 100vw, 680px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Ad specifics:</p>
<ul>
<li>Resolution: 1080 x 1920 pixels</li>
<li>File Size: 4GB Max</li>
<li>Instagram Video Ads Duration: 1 to 15 seconds</li>
<li>Maximum Video Ad Ratio : 9:16</li>
<li>Sound: Optional but recommended</li>
<li>Video thumbnail: images that consist of more than 20% text may experience reduced delivery</li>
</ul>
<p>To create your first Instagram Story ad, simply head to Facebook <a href="https://www.facebook.com/ads/manager/#">Ads Manager</a> and create a new ad. When it’s the moment to choose where to display your ad, disable every placement except for Instagram stories.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1837 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories.png" sizes="(max-width: 539px) 100vw, 539px" srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories.png 652w, https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories-300x300.png 300w" alt="" width="539" height="539" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories.png 652w, https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories-150x150.png 150w, https://strategico.io/wp-content/uploads/2018/04/instagram-placement-stories-300x300.png 300w" data-lazy-sizes="(max-width: 539px) 100vw, 539px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p><b>High impact, low budget Stories</b></p>
<p>If you don’t have a big budget, you can still create Instagram Stories of high impact, by using the stop motion feature of the instagram app.</p>
<p>Simply open the app and start creating a new story.</p>
<p>Select “stop motion” from the available options on bottom of the screen.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1838 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion.jpg" sizes="(max-width: 307px) 100vw, 307px" srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion.jpg 390w, https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion-300x245.jpg 300w" alt="" width="307" height="251" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion.jpg 390w, https://strategico.io/wp-content/uploads/2018/04/instagram-ads-stop-motion-300x245.jpg 300w" data-lazy-sizes="(max-width: 307px) 100vw, 307px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now play with the product placement and take multiple pictures to show your product as if it’s moving.</p>
<p>Save and upload as an ad with the “Ads Manager” app.</p>
<p><a href="https://business.instagram.com/a/stand-out-with-instagram-stories" target="_blank" rel="noopener">Check the full tutorial here.</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Native Video Ads best practices</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>You can post Instagram video ads in either landscape or square format. However, square videos have the edge over landscape videos.</p>
<p>Square videos consume more space on the user’s screen, meaning that your viewer is not distracted by other posts and the metrics (views, likes, comments, etc).</p>
<p>But don’t stop there: AB test a square video with a video with an aspect ratio of 4:5 to see what’s performing better for you.</p>
<p>Native videos specs:</p>
<ul>
<li>Resolution: at least 1080 x 1080 pixels</li>
<li>File Size: 4GB Max</li>
<li>Instagram Video Ads Duration: 1 to 60 seconds</li>
<li>Minimum Video Ad Dimensions : 4:5</li>
<li>Maximum Video Ad Dimensions : 1.91:1</li>
<li>Text under the video: Two rows of text will display</li>
<li>Video thumbnail: images that consist of more than 20% text may experience reduced delivery</li>
</ul>
<p>&nbsp;</p>
<p><b>How to set up an Instagram video campaign.</b></p>
<p>There are several ways to promote your video on Instagram.</p>
<p>Some of them offer you more options, while other are simpler and faster to use.</p>
<p>If you want to have access to as many options as possible and be in complete control of your ad, use Facebook Ads Manager or Facebook Power Editor. For a quick and easy way to promote your video, you can directly use the Instagram app (you’ll need to have a business Instagram account for that).</p>
<p>For a detailed tutorial on how to place ads, I recommend you to check out this great guide that<a href="https://blog.bufferapp.com/instagram-ads-guide#2"> Buffer put together on Instagram ads</a>.</p>
<p>Anyway, to create Instagram or Facebook ads, I usually use Adespresso. It’s a great tool because it makes it extremely easy to test multiple variations of your ad: you can test various headlines, descriptions and videos.<a href="https://adespresso.com/blog/facebook-instagram-ads/"> Here a great tutorial to set up an Instagram video ad campaign in Adespresso</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">One strategy to test: User Generated Content in Ads</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>User-generated content is a form of content that was created by users, not by a brand.</p>
<p>The power of this kind of content is its trustworthiness: since it was created by real users, it appears more genuine.</p>
<p>In fact, according to<a href="http://www.nielsen.com/us/en/insights/news/2012/consumer-trust-in-online-social-and-mobile-advertising-grows.html"> Nielsen</a>, 92 percent of consumers say they trust earned media, such as recommendations from friends and family, above all other forms of advertising.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1839 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content.png" sizes="(max-width: 491px) 100vw, 491px" srcset="https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content.png 570w, https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content-300x256.png 300w" alt="" width="491" height="419" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content.png 570w, https://strategico.io/wp-content/uploads/2018/04/nielsen-user-generated-content-300x256.png 300w" data-lazy-sizes="(max-width: 491px) 100vw, 491px" data-was-processed="true" /></p>
<p>Image source: <a href="http://www.nielsen.com/us/en/insights/news/2012/consumer-trust-in-online-social-and-mobile-advertising-grows.html">Nielsen</a></p>
<p>&nbsp;</p>
<p>User-generated content can help with conversions as well: customer product photos on a product page<a href="https://www.olapic.com/the-death-of-stock-photos/"> can increase conversion by 4.6%</a>.</p>
<p>What’s more, many users have no objections against having their content used by brands. Iconosquare, for instance,<a href="http://blog.iconosquare.com/instagram-user-generated-content-ugc/"> found that</a> 65% of users would feel honoured if a brand liked one of their posts.</p>
<p>If you have an active group of followers for your brand, scout for the best videos and ask them permission to repost them and promote them with ads. You may be amazed by the results.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339812317 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter5"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1523380444275">CHAPTER 5</p>
<h2 class="vc_custom_heading">Connect with B2B decision makers with Linkedin Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Video ads are the brand new addition to Linkedin ads.</p>
<p>Currently available on mobile only, Linkedin video ads are auto-playing videos that can drive more visits to your website or more sign-ups to a LinkedIn lead generation form.</p>
<p>They are an excellent opportunity to target B2B companies, so let’s see why you need them and how to set them up.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Linkedin Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Overview &#8211; B2b video advertising done right</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>We can say that with a very peculiar demographic, LinkedIn is the best platform for business-to-business interactions.</p>
<p>Your LinkedIn campaigns can help you gain visibility for your brand, generate leads, and boost traffic to your web pages with thought-leadership content.</p>
<p>The most amazing part of LinkedIn ads is its audience creation. If you want to target b2b prospects, there’s no better way to do it.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1882 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences.jpg" sizes="(max-width: 563px) 100vw, 563px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences.jpg 765w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences-300x293.jpg 300w" alt="" width="563" height="550" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences.jpg 765w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-audiences-300x293.jpg 300w" data-lazy-sizes="(max-width: 563px) 100vw, 563px" data-was-processed="true" /></p>
<p>Linkedin ads are way more expensive than Facebook ads (in my experience, I’m talking minimum 10 times more, <b>after optimisation</b>) but you’ll have the possibility to target Linkedin users by, among other things, their seniority, their job title, or the industry they work in.</p>
<p>If you are starting to see how powerful they can be, you’ll be happy to know that now you can also create custom audiences based on company names, and retarget your website visitors as well.</p>
<p>Linkedin rolled out video ads on March 18, so make sure to be among the first to take advantage of them!</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1885 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final.png" sizes="(max-width: 287px) 100vw, 287px" srcset="https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final.png 622w, https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final-165x300.png 165w, https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final-564x1024.png 564w" alt="" width="287" height="521" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final.png 622w, https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final-165x300.png 165w, https://strategico.io/wp-content/uploads/2018/04/video-ads-324x580-final-564x1024.png 564w" data-lazy-sizes="(max-width: 287px) 100vw, 287px" data-was-processed="true" />Source:<a href="https://business.linkedin.com/marketing-solutions/native-advertising/video-ads"> Linkedin Video Ads</a></p>
<p>&nbsp;</p>
<p>Here some<a href="https://business.linkedin.com/marketing-solutions/best-practices/ad-tips/video-ad-tips?trk=lmsvideoadlp"> best practices</a> for you to follow:</p>
<ul>
<li>Show what you want your audience to see in the first 10 seconds of the video (the viewer attention drops after that point).</li>
<li>Think like a silent film director: a significant portion of LinkedIn members will watch your ad with the sound off. Consider adding video subtitles.</li>
<li>Feature a clear CTA (call to action), so your audience knows the next steps to take after watching your video.</li>
<li>Keep videos under 30 seconds for brand awareness and brand consideration goals; test longer videos for demand generation.<a href="https://business.linkedin.com/marketing-solutions/content-marketing/how-to-stand-out-with-b2b-video-in-2018"> The general guideline</a> for top-of-funnel videos is 30-90 seconds, but content can be longer from the middle of the funnel.</li>
<li>A/B test the same content with different lengths: short looped videos (5-15 sec) to encourage your audience to learn more; Medium (~30 sec) with quick product overviews; Long (1 min+) richer stories that make an emotional connection.</li>
<li>Measure success with demographic reporting to understand which audience segments have the highest video view rates (example in the image below).</li>
</ul>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1886 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics.png" sizes="(max-width: 722px) 100vw, 722px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics.png 1247w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-300x179.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-768x457.png 768w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-1024x609.png 1024w" alt="" width="722" height="430" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics.png 1247w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-300x179.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-768x457.png 768w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-demographics-1024x609.png 1024w" data-lazy-sizes="(max-width: 722px) 100vw, 722px" data-was-processed="true" /></p>
<p>Source:<a href="https://www.linkedin.com/help/linkedin/answer/61000/demographics-for-your-ads?src=or-search&amp;veh=www.google.es%7Cor-search&amp;trk=sem_lms_gaw"> Demographics for your ads</a></p>
<p>&nbsp;</p>
<p><b>Essential components of a b2b video:</b></p>
<p>BlitzMetrics CEO Dennis Yu shared with Linkedin his tips to condense messages into quick-hitting 60-second videos that are more likely to be viewed in their entirety:</p>
<ul>
<li><b>Hook</b>: Capture attention within the first 3 seconds</li>
<li><b>Ignite Pain/Pleasure</b>: Identify problem or opportunity in 3-15 seconds range</li>
<li><b>Describe Solution</b>: Explain what you offer and why it will help viewers from 15-50 seconds</li>
<li><b>Call to Action</b>: Leave with an actionable next step in the final 10 seconds</li>
</ul>
<p>&nbsp;</p>
<p>Linkedin video ads<a href="https://www.linkedin.com/help/linkedin/answer/85306?src=or-search&amp;veh=www.google.es%7Cor-search&amp;trk=lmsvideoadlp"> specs</a>:</p>
<ul>
<li>Length: Three seconds to 30 minutes (Tip: most successful video ads are less than 15 seconds long)</li>
<li>Layout: Horizontal (vertical videos are not supported)</li>
<li>File size: Between 75 KB and 200 MB</li>
<li>File format: MP4</li>
<li>Pixel and aspect ratio requirements: up to 1080p</li>
<li>You cannot upload more than 25 Videos in Campaign Manager within 24 hours.</li>
<li>You can only upload videos from a desktop computer, not from your mobile device.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">How to create a video ad campaign on Linkedin</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><a href="https://www.linkedin.com/ad/accounts">Sign in to Campaign Manager</a>, click on “Create new campaign” and choose “Sponsored Content”:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1889 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content.jpg" sizes="(max-width: 700px) 100vw, 700px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content.jpg 865w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content-300x40.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content-768x102.jpg 768w" alt="" width="700" height="93" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content.jpg 865w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content-300x40.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-sponsored-content-768x102.jpg 768w" data-lazy-sizes="(max-width: 700px) 100vw, 700px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Choose any of the ad formats available. With any of them you’ll be able to use video as ad format:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1890 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish.jpg" sizes="(max-width: 461px) 100vw, 461px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish.jpg 642w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish-300x178.jpg 300w" alt="" width="461" height="273" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish.jpg 642w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-accomplish-300x178.jpg 300w" data-lazy-sizes="(max-width: 461px) 100vw, 461px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Choose video as ad format:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1891 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats.jpg" sizes="(max-width: 368px) 100vw, 368px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats.jpg 514w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats-300x198.jpg 300w" alt="" width="368" height="243" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats.jpg 514w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ad-formats-300x198.jpg 300w" data-lazy-sizes="(max-width: 368px) 100vw, 368px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now upload your video based on the guidelines explained above in this chapter, and later click on “sponsor selected content”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1887 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor.jpg" sizes="(max-width: 729px) 100vw, 729px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor.jpg 1106w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-300x59.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-768x151.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-1024x201.jpg 1024w" alt="" width="729" height="143" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor.jpg 1106w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-300x59.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-768x151.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/linkedin-video-ads-sponsor-1024x201.jpg 1024w" data-lazy-sizes="(max-width: 729px) 100vw, 729px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now it’s only a matter of choosing the right audience for your video ad, your budget, and submit to Linkedin for approval.</p>
<p>The next step is to simply wait while you generate views and clicks on your ad.</p>
<p>After a couple of days, you can check your data to see how many people watched your video in full or until a certain point.</p>
<p><a href="https://www.linkedin.com/help/linkedin/answer/85305">To do so</a>:</p>
<ol>
<li>Sign in to Campaign Manager.</li>
<li>Click account name for the account that contains your video ad campaign.</li>
<li>Scroll down to the Campaigns table and click the campaign that contains your Video Ad.</li>
<li>Scroll down to the Ads table and click the Video tab to see performance metrics for each of your creatives.</li>
</ol>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1888 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance.png" sizes="(max-width: 704px) 100vw, 704px" srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance.png 816w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance-300x217.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance-768x556.png 768w" alt="" width="704" height="510" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance.png 816w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance-300x217.png 300w, https://strategico.io/wp-content/uploads/2018/04/linkedin-ads-video-performance-768x556.png 768w" data-lazy-sizes="(max-width: 704px) 100vw, 704px" data-was-processed="true" /></p>
<p><em>Source:<a href="https://www.linkedin.com/help/linkedin/answer/85305"> Linkedin Help</a></em></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339822908 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter6"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1523978781384">CHAPTER 6</p>
<h2 class="vc_custom_heading">Maximise your reach tapping into additional video platforms</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Social networks are not the only platforms where you can promote your video ad.</p>
<p>There are lots of additional networks that can allow you to reach more customers on more websites.</p>
<p>I’m gathering the most important ones in this chapter but be warned – some are really high level, and you’ll need a huge monthly ad spend to be accepted.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Taboola</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Tabola places its ads on some of the greatest websites of the world – in 2017<a href="https://blog.taboola.com/taboola-2017-year-in-review/"> they reached 1.4 billion people a month</a>, which is around half of the global internet users.</p>
<p><a href="https://blog.taboola.com/taboola-feed/">Taboola Feed</a> is a feed of promoted news that appears after an article on websites that are using Taboola, and it can display video ads as well.</p>
<p>You can learn more and register for Taboola here:<a href="https://www.taboola.com/"> https://www.taboola.com</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Oath by Verizon</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Oath is a subsidiary of Verizon that serves as the umbrella company of its digital content subdivisions, including AOL and Yahoo! Oath includes Brightroll and<a href="https://www.onebyaol.com/"> One by AOL.</a></p>
<p>To push your video ads to their websites, which include Huffington Post, TechCrunch and 40 more brands, you can<a href="https://www.oath.com/advertising/video/"> contact them directly from here</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">SpotX</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Spotx Is an online platform that focuses only on video ads.</p>
<p>On their website, they claim that they can provide a direct pipeline to premium supply and buy video through public, private and curated Marketplaces.</p>
<p>They work with Zynga, Spotify, and CBS Local among others, so it’s worth checking them out.</p>
<p>You can <a href="https://www.spotx.tv/advertisers/">learn more and contact them here</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Adobe Primetime</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>It’s a cloud-based service that helps broadcasters, cable networks, and service providers capitalise on their data and technology to increase advertising and subscription revenue.</p>
<p>They use machine learning, data and dynamic ad insertion to reduce ad waste and improve the targeting of your ad.</p>
<p>They have NBC and Comcast among their customers, and you can<a href="https://www.adobe.com/marketing-cloud/primetime.html"> check them out here</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Exponential</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>It’s an advertising platform that can connect your brand with more than 700 million users globally (on desktop and mobile).</p>
<p>They have a unique approach to audience modelling: they look for the ideal behaviour, the activities and interests that indicate if a person will convert, regardless of what their profile may look like as a whole.</p>
<p>Some of their partners: Microsoft, Mastercard, IBM, Kellog’s.</p>
<p><a href="http://exponential.com/">Learn more about them here</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Videology</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Videology is an online platform that provides advertising across both TV and digital video.</p>
<p>If you’d like to promote your video ad on television,<a href="https://videologygroup.com/software/"> check them out</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">YuMe by RythmOne</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>It’s a provider of video and connected TV inventory, unique consumer insights, and cross-screen targeting technology. They claim they can help you reach and engage consumers wherever and however they consume video content.</p>
<p><a href="http://www.yume.com/advertisers">Check them out here</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339834876 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter7"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1524048355410">CHAPTER 7</p>
<h2 class="vc_custom_heading">Take advantage of advanced targeting with Twitter Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>Twitter videos mirror the platform where they are hosted. To make an impact, they must be quick, personal and entertaining.</p>
<p>Mix them with the advanced advertising capabilities of Twitter ads, and you’ll have the perfect formula to gain new followers for your brand and drive conversions to your website.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Twitter Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Overview</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Let’s start with some basics, and you’ll learn why you’ll love Twitter video ads.</p>
<p>First of all,<a href="https://www.inc.com/larry-kim/6-big-reasons-you-need-to-use-twitter-ads.html"> Twitter’s ad targeting is insanely</a> great.</p>
<p>You can target by keyword, hashtag or people that follow specific Twitter profiles: use these options if you are building your database or if you want to do some brand awareness.</p>
<p>You can also use “engager targeting”, which means to show your ad only to people that interacted with your tweets in the past – use this to drive more conversions to your website!</p>
<p>Finally, with “tailored audiences”, you can take advantage of retargeting your website visitors directly on Twitter and get highly relevant views for a very low cost.</p>
<p>So why choose video ads?</p>
<p>Well,<a href="https://business.twitter.com/en/blog/5-data-driven-tips-for-scroll-stopping-video.html"> tweets with video are 6x more likely to be retweeted</a> than Tweets with photos, and you can use any of these targeting options we just discussed.</p>
<p>Here some best practices for scroll-stopping videos:</p>
<ul>
<li>Use a hook. Build in an intriguing set-up or dynamic set of actions to hook the viewer in the first few seconds.</li>
<li>Show your logo. Feature your brand logo or product at the beginning of your video to drive brand association from the start.</li>
<li>Humanize your videos. Videos showing people in the first few frames have been proven to increase view rates and drive 2x higher retention. (<a href="https://blog.twitter.com/2015/new-research-five-best-practices-for-promoted-video-0">source</a>)</li>
<li>Tell a story. Videos with a clear beginning, middle and end can increase viewership (<a href="http://venturebeat.com/2016/02/06/the-next-wave-in-storytelling-is-short-form-video/">source</a>)</li>
<li>Videos that simply aim to entertain your audience can lead to a 15% higher intent to share (<a href="https://blog.twitter.com/2015/new-research-five-best-practices-for-promoted-video-0">source</a>)</li>
<li>Include captions. Use captions and visual cues to pull the viewer through the video and make it easier to process.</li>
</ul>
<p>And these are the specs for Twitter video ads:</p>
<ul>
<li>Title (under video): 70 characters.</li>
<li>Description (under video): 200 characters.</li>
<li>File type: MP4 or MOV.</li>
<li>File size: 1GB Max</li>
<li>Max time: 2 minutes and 20 seconds</li>
</ul>
<p>Here below, some strategies to get the most out of Twitter video ads.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Strategy 1 &#8211; How to get more video views</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Let’s create a campaign with the sole focus of maximising the views of your video.</p>
<p>To start, go to <a href="https://ads.twitter.com/">https://ads.twitter.com/</a> and choose “Promoted Video Views”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1841 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome.jpg" sizes="(max-width: 655px) 100vw, 655px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome.jpg 1111w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-300x110.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-768x283.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-1024x377.jpg 1024w" alt="" width="655" height="241" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome.jpg 1111w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-300x110.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-768x283.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-welcome-1024x377.jpg 1024w" data-lazy-sizes="(max-width: 655px) 100vw, 655px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now decide your budget and, optionally, start and ending time.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1842 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign.jpg" sizes="(max-width: 460px) 100vw, 460px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign.jpg 593w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign-300x172.jpg 300w" alt="" width="460" height="264" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign.jpg 593w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-campaign-300x172.jpg 300w" data-lazy-sizes="(max-width: 460px) 100vw, 460px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now it’s the tricky part, so pay attention because you’ll need to go back and forth between 3 separate tabs on your browser.</p>
<p>You’ll need to create a new sponsored tweet that contains your video, and to do that the first step is to create a new tweet by clicking on the blue icon on the right:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1846 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives.jpg" sizes="(max-width: 507px) 100vw, 507px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives.jpg 723w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-300x95.jpg 300w" alt="" width="507" height="160" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives.jpg 723w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-300x95.jpg 300w" data-lazy-sizes="(max-width: 507px) 100vw, 507px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>On the new tab of your browser, click on “Select Video” and “Media Library”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1845 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video.jpg" sizes="(max-width: 454px) 100vw, 454px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video.jpg 612w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video-300x184.jpg 300w" alt="" width="454" height="278" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video.jpg 612w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-video-300x184.jpg 300w" data-lazy-sizes="(max-width: 454px) 100vw, 454px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>From the new tab, click on “Upload Media” and on the blue button to compose a Tweet:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1844 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media.jpg" sizes="(max-width: 638px) 100vw, 638px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media.jpg 909w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media-300x128.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media-768x329.jpg 768w" alt="" width="638" height="273" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media.jpg 909w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media-300x128.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-upload-media-768x329.jpg 768w" data-lazy-sizes="(max-width: 638px) 100vw, 638px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now you can finally compose your tweet. If you want to can link back to your site but that’s optional. I recommend to “Edit media settings” to add a title and description to your video, and to click on “promoted only” to use this tweet only for your paid campaigns.</p>
<p>Click the blue button “tweet” and your tweet will be ready.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1843 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready.jpg" sizes="(max-width: 438px) 100vw, 438px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready.jpg 582w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready-222x300.jpg 222w" alt="" width="438" height="591" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready.jpg 582w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-tweet-ready-222x300.jpg 222w" data-lazy-sizes="(max-width: 438px) 100vw, 438px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>You now go back to the first tab (I told you this was going to be tricky) and:</p>
<ol>
<li>Click on refresh</li>
<li>Choose “promoted-only tweets”</li>
<li>Write the first couple of words of your tweet to make it appear from the list</li>
<li>Click on the tweet to select it</li>
<li>Press “next” on the top right of the page.</li>
</ol>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1850 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet.jpg" sizes="(max-width: 571px) 100vw, 571px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet.jpg 1040w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-300x141.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-768x360.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-1024x480.jpg 1024w" alt="" width="571" height="268" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet.jpg 1040w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-300x141.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-768x360.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-promote-tweet-1024x480.jpg 1024w" data-lazy-sizes="(max-width: 571px) 100vw, 571px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now that the tweet is ready, you can now define the right audience to promote it.</p>
<p>In my case, I wanted to target people in the UK that search for “Larry Kim” or that are following him (or similar accounts):</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1849 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics.jpg" sizes="(max-width: 411px) 100vw, 411px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics.jpg 606w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-241x300.jpg 241w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-116x145.jpg 116w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-190x236.jpg 190w" alt="" width="411" height="512" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics.jpg 606w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-241x300.jpg 241w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-116x145.jpg 116w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-demographics-190x236.jpg 190w" data-lazy-sizes="(max-width: 411px) 100vw, 411px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>When you are happy with the settings, click next.</p>
<p>In the next page, you can change the bidding,  and clone the ad group you just created by clicking on “Clone Ad Group”.</p>
<p>If you click there, your “ad set” will be duplicated. Use that if you are testing multiple videos and multiple audiences.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1848 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group.jpg" sizes="(max-width: 570px) 100vw, 570px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group.jpg 1038w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-300x129.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-768x330.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-1024x440.jpg 1024w" alt="" width="570" height="245" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group.jpg 1038w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-300x129.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-768x330.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-clone-ad-group-1024x440.jpg 1024w" data-lazy-sizes="(max-width: 570px) 100vw, 570px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>When you are ready, click next, and you will arrive at the final page.</p>
<p>Review the details of your campaign and click “Launch campaign” to start your Twitter video ad campaign!</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1847 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review.jpg" sizes="(max-width: 622px) 100vw, 622px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review.jpg 1035w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-300x143.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-768x367.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-1024x489.jpg 1024w" alt="" width="622" height="297" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review.jpg 1035w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-300x143.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-768x367.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-review-1024x489.jpg 1024w" data-lazy-sizes="(max-width: 622px) 100vw, 622px" data-was-processed="true" /></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Strategy 2 &#8211; Drive targeted visitors to your website with a Video Website Card.</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><a href="https://blog.twitter.com/marketing/en_us/topics/product-news/2017/Make-your-videos-work-harder-with-the-Video-Website-Card.html">Video Website Cards</a> are a creative format that combines the power of video with the ability to drive users back to a site to learn more or take action immediately.</p>
<p>With a Video Website Card, businesses can:</p>
<ul>
<li><b>Attract qualified consumers</b> with an immersive auto-playing video showcasing their brand’s value, product, or service before a person clicks through.</li>
<li><b>Extend brand engagement</b> beyond the end of the video with creatives designed to drive consumers to your site to learn more or take action.</li>
<li><b>Keep consumers’ attention</b> as they move down the funnel.</li>
</ul>
<p>How they work: when a user clicks on a video on mobile, the video anchors to the top of the screen and continues to play while the website loads below it.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1857 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards.png" sizes="(max-width: 672px) 100vw, 672px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards.png 975w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards-300x163.png 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards-768x418.png 768w" alt="" width="672" height="366" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards.png 975w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards-300x163.png 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-video-cards-768x418.png 768w" data-lazy-sizes="(max-width: 672px) 100vw, 672px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>To create a video website card, we’ll follow the strategy 1 explained above, but with a few differences.</p>
<p>First of all, our goal will be to generate website clicks or conversions:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1856 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks.jpg" sizes="(max-width: 693px) 100vw, 693px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks.jpg 1003w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks-300x106.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks-768x273.jpg 768w" alt="" width="693" height="246" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks.jpg 1003w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks-300x106.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-website-clicks-768x273.jpg 768w" data-lazy-sizes="(max-width: 693px) 100vw, 693px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Next, when you are creating your new tweet in compose mode, you’ll click on “select card” and “card library”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1855 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card.jpg" sizes="(max-width: 410px) 100vw, 410px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card.jpg 610w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card-300x267.jpg 300w" alt="" width="410" height="364" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card.jpg 610w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-select-card-300x267.jpg 300w" data-lazy-sizes="(max-width: 410px) 100vw, 410px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>From the new tab, click on “Create Card” and “Video Website Card”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1854 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-create-card.jpg" alt="" width="244" height="189" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-create-card.jpg" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Fill up the card with your video, headline and URL and click on “create”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1853 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card.jpg" sizes="(max-width: 424px) 100vw, 424px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card.jpg 579w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card-300x228.jpg 300w" alt="" width="424" height="322" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card.jpg 579w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-add-data-card-300x228.jpg 300w" data-lazy-sizes="(max-width: 424px) 100vw, 424px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Now head back to the previous tab of your browser (the Compose mode) and choose your video website card from the dropdown menus on bottom right (make sure you choose “video”):</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1852 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card.jpg" sizes="(max-width: 451px) 100vw, 451px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card.jpg 604w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card-211x300.jpg 211w" alt="" width="451" height="641" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card.jpg 604w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-choose-final-card-211x300.jpg 211w" data-lazy-sizes="(max-width: 451px) 100vw, 451px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Finally, head back to your first tab and search for the tweet you just created:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1851 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card.jpg" sizes="(max-width: 491px) 100vw, 491px" srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card.jpg 626w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card-300x189.jpg 300w" alt="" width="491" height="310" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card.jpg 626w, https://strategico.io/wp-content/uploads/2018/04/twitter-ads-creatives-video-card-300x189.jpg 300w" data-lazy-sizes="(max-width: 491px) 100vw, 491px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>All the rest of the process stays the same: choose your targeting, your bidding method, and you’ll be ready to confirm and start your campaign!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525339845509 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter8"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1524058026562">CHAPTER 8</p>
<h2 class="vc_custom_heading">Get high CTR with Youtube Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopy">
<div class="wpb_wrapper">
<p>YouTube processes more than 3 billion searches per month, and it’s the second largest search engine online right behind Google.</p>
<p>For most of its users, it serves a fundamental purpose: discovery.</p>
<p>Placing your video ad inside a youtube video, you are making sure to target a big audience that is willing to learn more about a specific topic or product, making it a fantastic platform to advertise on.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Youtube Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Overview &#8211; Your Guide to Youtube Advertising</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><a href="https://wistia.com/blog/video-advertising-strategy-larry-kim" target="_blank" rel="noopener">Compared to Facebook</a>, Youtube video ads are more “traditional”, since you can basically force users to watch your ad for 5 or even 15 seconds. That means you can take your time and tell your story, and ultimately <strong>build up to a punchline at the end</strong>, just like a normal TV commercial.</p>
<p>Another great thing you should know is that <strong>advertising on youtube is more affordable than you think</strong>.</p>
<p>The cost per view of your ad varies for several reasons, but mostly because of your target market. For a very competitive market in a country like the US, you can expect to spend 0.50$ or more, but for other markets the cost is much lower, ranging between 10 and 30 cents per view. Larry Kim points out that in the USA, a typical CPM for (Facebook or) YouTube ads is around $15.</p>
<p>Of course, more factors influence the cost per view. They are:</p>
<ul>
<li>Video quality. Make sure to have a professionally written script, high production and image quality (more on this in chapter 2)</li>
<li>Targeting</li>
<li>Ad placement</li>
</ul>
<p>A great reason to choose Youtube to advertise your videos is that you only pay when people<a href="https://www.youtube.com/yt/advertise/pricing/"> decide to watch your ad</a>. For example, when someone chooses to view your ad for at least 30 seconds or engages with it – like clicking on a call-to-action overlay.</p>
<p>Youtube offers you<a href="https://creatoracademy.youtube.com/page/lesson/ad-types?hl=en#strategies-zippy-link-2"> four different video ad formats</a>.</p>
<ul>
<li><b>Skippable video ads</b> – the most common type of YouTube ad. These are the ads you see before during or after a video; a viewer can skip your ad after 5 seconds.</li>
<li><b>Non-skippable video ads</b> – Viewers must watch the entire 15+ second ad which may deter viewers who don’t know the value of your videos.</li>
<li><b>Midroll ads</b> – Currently available for videos over 10 minutes: the ads are spaced within the video, like TV commercials. Viewers must watch ads before continuing through the video.</li>
<li><b>Bumper ads</b> – these are non-skippable videos of max 6 seconds which a viewer must watch before seeing the main video.</li>
</ul>
<p>&nbsp;</p>
<p>Which advertising option should you choose on Youtube?</p>
<ul>
<li>Skippable video ads are the lowest risk ads, given that you pay only when a viewer watches 30 seconds or till the end of the video ad.</li>
<li>Non-skippable video ads (midroll or before the video)<a href="https://support.google.com/youtube/answer/188038?hl=en"> may generate higher CPMs</a> than other ad formats on YouTube, but they have higher video abandonment.</li>
<li>Bumper ads are non-skippable but so short that the users won’t feel annoyed. Use them to keep your brand on top of mind. They help<a href="https://www.thinkwithgoogle.com/products/bumper-ads/"> driving upper-funnel goals</a> like ad recall and awareness.</li>
</ul>
<p>Let’s see in detail how to optimise your next <a href="https://xinicomms.com/animation-content-creation-2/">video</a> ad campaign on youtube, step by step</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">How to create and optimise your Youtube video ad.</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>First, go over to Adwords and create a new campaign from the blue button.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1863 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign.png" sizes="(max-width: 341px) 100vw, 341px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign.png 476w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign-300x256.png 300w" alt="" width="341" height="291" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign.png 476w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-new-campaign-300x256.png 300w" data-lazy-sizes="(max-width: 341px) 100vw, 341px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>From Campaign Type, click on Video, choose your main goal for this campaign and click continue:</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-1862 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign.jpg" sizes="(max-width: 847px) 100vw, 847px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign.jpg 847w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign-300x73.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign-768x188.jpg 768w" alt="" width="847" height="207" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign.jpg 847w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign-300x73.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-video-campaign-768x188.jpg 768w" data-lazy-sizes="(max-width: 847px) 100vw, 847px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>The process from now on is very straightforward, so I want to focus only on a few points.</p>
<p>&nbsp;</p>
<p><strong>Networks</strong></p>
<p>&nbsp;</p>
<p><strong><img class="aligncenter wp-image-1861 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks.jpg" sizes="(max-width: 663px) 100vw, 663px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks.jpg 927w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks-300x62.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks-768x160.jpg 768w" alt="" width="663" height="138" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks.jpg 927w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks-300x62.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-networks-768x160.jpg 768w" data-lazy-sizes="(max-width: 663px) 100vw, 663px" data-was-processed="true" /></strong></p>
<p>&nbsp;</p>
<p><b>Youtube search results</b> – This option allows you only to create a “<a href="https://www.youtube.com/watch?v=ye7J3RDw25w">video discovery ad</a>” that appears on YouTube search results only. It’s a promoted search result (made of an image and some copy). By clicking on it, your video ad will open.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1860 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results.jpg" sizes="(max-width: 165px) 100vw, 165px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results.jpg 208w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results-163x300.jpg 163w" alt="" width="165" height="303" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results.jpg 208w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-search-results-163x300.jpg 163w" data-lazy-sizes="(max-width: 165px) 100vw, 165px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p><b>YouTube videos &amp; Video partners on the display Network – </b>This option allows you to create “video discovery ad”, “in-stream ads” and “bumper ads” that will appear on Youtube videos, channels, homepage and on a collections of sites part of the Google Display Network.</p>
<p>&nbsp;</p>
<p><strong>Targeting options</strong></p>
<p>There are several targeting options to allow you to show your ad to the right people.</p>
<p>&nbsp;</p>
<ul>
<li><b>Languages &amp; Location</b> – once set, these options will be the same for the whole campaign.</li>
</ul>
<p>&nbsp;</p>
<p>The following options can be different for every ad set so that you can easily ab test different segments:</p>
<p>&nbsp;</p>
<ul>
<li><strong>Demographics</strong> – Age, gender, parental status, household income</li>
<li><strong>Audiences</strong> – Target people based on their interests, or by the products they are actively looking for.</li>
<li><strong>Remarketing</strong> – You find this option inside “Audiences”, it allows you to target people who previously interacted with your business and create similar audiences. If you created lists of people that previously watched your videos, you’ll find them here as well.</li>
<li><strong>Keywords</strong> – Show your YouTube ads to people that searched specific keywords on YouTube.</li>
<li><strong>Topics</strong> – Show ads on content about specific topics. Topic targeting is a simple way to place your ads on many web pages, apps, and videos about a particular subject.</li>
<li><strong>Placements</strong> – You can decide exactly where you want your ad to run. On the Display Network, a placement can be an entire website, a specific page of a site, or a mobile app. On YouTube, a placement can be a specific channel or a video.</li>
</ul>
<p>&nbsp;</p>
<p><strong>Ad Creation</strong></p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1859 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation.jpg" sizes="(max-width: 676px) 100vw, 676px" srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation.jpg 1047w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-300x219.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-768x561.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-1024x748.jpg 1024w" alt="" width="676" height="494" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation.jpg 1047w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-300x219.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-768x561.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/youtube-ads-ad-creation-1024x748.jpg 1024w" data-lazy-sizes="(max-width: 676px) 100vw, 676px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Here you’ll be able to upload your video or link any video already hosted by youtube (it doesn’t need to be connected to your account).</p>
<p>One note: to choose a different thumbnail, you’ll need to edit the video from youtube and change the thumbnail there.</p>
<p>Make sure to choose the right type of ad (in-stream, video discovery or bumper ad) and after you write your headline and description you will be ready to confirm your campaign and start your ad.</p>
<p>With this, we concluded our chapter on Youtube ads.</p>
<p>Let’s move to the last chapter, which focuses on a fantastic platform to target millennials: SnapChat!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1525340100166 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper"><a name="chapter9"></a></div>
</div>
<p class="vc_custom_heading vc_custom_1532938832934">CHAPTER 9</p>
<h2 class="vc_custom_heading">Target Millennials with Snapchat Video Ads</h2>
<div class="vc_empty_space"></div>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_separator_no_text"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="row vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element headercopyblack">
<div class="wpb_wrapper">
<p>If Millenials are part of your target audience, you should definitely run Snapchat video ads.</p>
<p>Snapchat has a young audience, but more than half of new users currently signing up are over the age of 25, making this a fantastic platform to advertise several B2C products.</p>
<p>Let’s see why Snapchat is different compared to other platforms, and how you can take advantage of that.</p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="vc_empty_space"></div>
<div class="wpb_single_image wpb_content_element vc_align_center">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img attachment-medium lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-big-300x282.png" sizes="(max-width: 300px) 100vw, 300px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-big-300x282.png 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big-768x722.png 768w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big-1024x963.png 1024w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big.png 1074w" alt="" width="300" height="282" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-big-300x282.png" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-big-300x282.png 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big-768x722.png 768w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big-1024x963.png 1024w, https://strategico.io/wp-content/uploads/2018/04/snapchat-big.png 1074w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-was-processed="true" /></div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element upgradechapter">
<div class="wpb_wrapper">
<p><strong><span class="tve-leads-two-step-trigger tl-2step-trigger-2117">BONUS: Get my Snapchat Ads Swipe file.</span></strong></p>
</div>
</div>
<div class="vc_empty_space"></div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">Overview</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Snapchat is growing – and growing fast.</p>
<p>To make a comparison, Snapchat’s daily active users<a href="http://www.business-standard.com/article/companies/snapchat-logs-5-daily-average-user-growth-in-q4fy17-in-us-pips-facebook-118020700712_1.html"> grew by 5% in the last quarter of 2017</a>, while Facebook grew only by 2.2% – with a total of 187 million average daily active Snapchatters globally.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1873 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats.jpg" sizes="(max-width: 476px) 100vw, 476px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats.jpg 715w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats-290x300.jpg 290w" alt="" width="476" height="492" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats.jpg 715w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-stats-290x300.jpg 290w" data-lazy-sizes="(max-width: 476px) 100vw, 476px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>And when users are active, it seems that they can’t live without Snapchat:</p>
<p>&nbsp;</p>
<p><a href="https://forbusiness.snapchat.com/blog/whos-on-snapchat-anyway/"><i><img class="aligncenter wp-image-1872 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter.jpg" sizes="(max-width: 564px) 100vw, 564px" srcset="https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter.jpg 738w, https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter-300x112.jpg 300w" alt="" width="564" height="210" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter.jpg 738w, https://strategico.io/wp-content/uploads/2018/04/avid-snapchatter-300x112.jpg 300w" data-lazy-sizes="(max-width: 564px) 100vw, 564px" data-was-processed="true" /></i></a></p>
<p><a href="https://forbusiness.snapchat.com/blog/whos-on-snapchat-anyway/"><i>https://forbusiness.snapchat.com/blog/whos-on-snapchat-anyway/</i></a></p>
<p>&nbsp;</p>
<p>The community spans a broad age range. A lot of people think it’s just teens who Snap on a regular basis, but the audience is ageing up.</p>
<p>They do have a large audience of teens and young adults, but more than 50% of daily new Snapchatters in the US are 25 or older, and nearly one-third of adult Snapchatters are parents.</p>
<p>Another thing that sets Snapchat apart is the amount of time users spend on the app each day –  daily active Snapchatters open Snapchat an average of over 18 times every day.</p>
<p>Crazy right?</p>
<p>If you want to reach any of the 185M active users with ads, you have several options: video ads, filters and lenses – but since the aim of this article is “video ads”, we’ll focus here only on the first category.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="boxed-row">
<div class="normal_height vc_row wpb_row vc_row-fluid vc_custom_1520267138517 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<h3 class="vc_custom_heading h3">The Snap Video Ads</h3>
<div class="vc_empty_space"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h3></h3>
<p><img class="aligncenter wp-image-1871 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads.jpg" sizes="(max-width: 568px) 100vw, 568px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads.jpg 862w, https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads-300x56.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads-768x143.jpg 768w" alt="" width="568" height="106" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads.jpg 862w, https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads-300x56.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-types-of-ads-768x143.jpg 768w" data-lazy-sizes="(max-width: 568px) 100vw, 568px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>There are four advanced types of video ads, but they all start with a “snap ad”: a full-screen, 100% viewable video ad of max 10 seconds, with<b> audio on by default</b>.</p>
<p>Some specs:</p>
<ul>
<li>32 MB max of file size</li>
<li>Minimum size: 1080 x 1920 pixels</li>
<li>Required Ratio: 9:16</li>
<li>Length: 3 to 10 seconds</li>
<li><a href="https://businesshelp.snapchat.com/en-US/article/top-snap-specs">More requirements here</a></li>
</ul>
<p>After you create you snap ad, you can decide if you want to stick with it (usually to generate more awareness for your product) or if you’re going to drive action using one of the following:</p>
<ul>
<li>“Web View” to send the user to your website;</li>
<li>“App Install” to drive more downloads of your app;</li>
<li>“Deep Link” to re-engage users of your  app;</li>
<li>“Long Form video” to show a video in full, after you showed a teaser with your snap ad.</li>
</ul>
<p>&nbsp;</p>
<p><b>How to choose the best audience possible for your video advertisements.</b></p>
<p>To create a new ad, simply head over to<a href="https://ads.snapchat.com/"> https://ads.snapchat.com/</a>, log in with your Snapchat account and create a new campaign.</p>
<p>I recommend choosing “Advanced Create” to have the ability to create multiple ad sets and test your ads with different audiences.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1870 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create.jpg" sizes="(max-width: 474px) 100vw, 474px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create.jpg 742w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create-300x152.jpg 300w" alt="" width="474" height="241" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create.jpg 742w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-advanced-create-300x152.jpg 300w" data-lazy-sizes="(max-width: 474px) 100vw, 474px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>In any case, you’ll have the possibility to choose the best objective for your campaign:</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1869 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal.jpg" sizes="(max-width: 520px) 100vw, 520px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal.jpg 821w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal-300x63.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal-768x161.jpg 768w" alt="" width="520" height="109" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal.jpg 821w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal-300x63.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-choose-goal-768x161.jpg 768w" data-lazy-sizes="(max-width: 520px) 100vw, 520px" data-was-processed="true" /></p>
<p>After this, you can define the audience for each of your ad sets.</p>
<p>One note here: the <b>audience options will depend on the country</b> you are targeting.</p>
<p>For example, if you target the United Kingdom, you will only be able to target users by “Lifestyle” (that are long-term interests of users), but if you target the US, you have three additional options:</p>
<ul>
<li>Shoppers – what people buy in stores or restaurants</li>
<li>Viewers – what people watch on tv or online</li>
<li>Visitors – where people usually go with their smartphone</li>
</ul>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1868 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences.jpg" sizes="(max-width: 459px) 100vw, 459px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences.jpg 671w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences-300x153.jpg 300w" alt="" width="459" height="235" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences.jpg 671w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-audiences-300x153.jpg 300w" data-lazy-sizes="(max-width: 459px) 100vw, 459px" data-was-processed="true" /></p>
<p><a href="https://forbusiness.snapchat.com/audiences/"><i>https://forbusiness.snapchat.com/audiences/</i></a></p>
<p>&nbsp;</p>
<p><b>One note on custom audiences</b></p>
<p>Snapchat, like other platforms, gives you the ability to create custom audiences: you can import a list of emails or device IDs to reach your customers and their lookalikes.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1867 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences.jpg" sizes="(max-width: 535px) 100vw, 535px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences.jpg 789w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences-300x113.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences-768x290.jpg 768w" alt="" width="535" height="202" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences.jpg 789w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences-300x113.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-custom-audiences-768x290.jpg 768w" data-lazy-sizes="(max-width: 535px) 100vw, 535px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>To create a new custom audience, click the arrow on the top left of any page and choose “Audiences”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1866 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience.jpg" sizes="(max-width: 627px) 100vw, 627px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience.jpg 1038w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-300x90.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-768x232.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-1024x309.jpg 1024w" alt="" width="627" height="189" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience.jpg 1038w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-300x90.jpg 300w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-768x232.jpg 768w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-custom-audience-1024x309.jpg 1024w" data-lazy-sizes="(max-width: 627px) 100vw, 627px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p><b>Ad creation</b></p>
<p>Going back to the creation of a new campaign, when you are ready with your audiences, you can move to the next and final step: ad creation.</p>
<p>Digital Video Ads Branding Marketing</p>
<p>Follow the guidelines explained at the beginning of the chapter to create a video that complains with Snapchat video specs and upload it to “Topsnap Media”.</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-1865 lazyloaded" src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad.jpg" sizes="(max-width: 445px) 100vw, 445px" srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad.jpg 551w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad-292x300.jpg 292w" alt="" width="445" height="458" data-lazy-src="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad.jpg" data-lazy-srcset="https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad.jpg 551w, https://strategico.io/wp-content/uploads/2018/04/snapchat-ads-create-ad-292x300.jpg 292w" data-lazy-sizes="(max-width: 445px) 100vw, 445px" data-was-processed="true" /></p>
<p>&nbsp;</p>
<p>Add the name of your brand, a headline and a call to action, and you will be ready.</p>
<p>Review your campaign and press “Publish Campaign” to submit your ads for publication!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>&nbsp;</p>
</div>
<p>The post <a rel="nofollow" href="https://xinicomms.com/video-ads-marketing/">Digital Brand Management Strategies For Online Video Ads Marketing And Advertising</a> appeared first on <a rel="nofollow" href="https://xinicomms.com">XINI : No (1) Corporate Branding Company | Prints | Web Design Company in Nigeria | Graphic Designers in Nigeria | Website Designers in Lagos | Logo Designers in Lagos | Branding Company in Lagos Nigeria | Advertising Agency in Lagos Nigeria | promotional gifts company in Nigeria | Printing Company in Lagos | website design agency in Nigeria | Internet Marketing Company | Digital Marketing Agency in Nigeria</a>.</p>
]]></content:encoded>
										</item>
	</channel>
</rss>
