SlideShare a Scribd company logo
1 of 68
Download to read offline
HTML5
unplugged

marc.baechinger@zuehlke.com
Dienstag, 11. Februar 14
The tale of the
evernet
Dienstag, 11. Februar 14
The World Wide Web.
An evernet?

Dienstag, 11. Februar 14
Dienstag, 11. Februar 14
In der freien Natur weitab von
high speed Internet

Dienstag, 11. Februar 14
in Tiefgaragen und
anderen unterirdischen Räumen
Dienstag, 11. Februar 14
Auf Reisen im Zug...

Dienstag, 11. Februar 14
Text

...spätestens in Tunnels

Dienstag, 11. Februar 14
beim Sparen von Roamingkosten

Dienstag, 11. Februar 14
Dienstag, 11. Februar 14
Offline
Technology
Dienstag, 11. Februar 14
das Web wird sesshaft

Dienstag, 11. Februar 14
resources

app state

data sources

html, css, js,
json, xml,
png, mp3,
mp4

appcache

Dienstag, 11. Februar 14

localStorage

File API

Database API*
appcache

Dienstag, 11. Februar 14

localStorage

File API

Database API*
Resource caching
Dienstag, 11. Februar 14
<html manifest="sbb.appcache">

CACHE MANIFEST
index.html
styles.css
app.js
NETWORK:
/service/fahrplan.json

Dienstag, 11. Februar 14
Server

Browser
GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /*.* HTTP/1.1
HTTP/1.1 200 OK
GET /sbb.appcache HTTP/1.1
HTTP/1.1 200 OK

Dienstag, 11. Februar 14
Server

Browser
GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /*.* HTTP/1.1
HTTP/1.1 200 OK
GET /sbb.appcache HTTP/1.1
HTTP/1.1 200 OK

GET /index.html HTTP/1.1
HTTP/1.1 200 OK

Dienstag, 11. Februar 14
Server

Browser
GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /*.* HTTP/1.1
HTTP/1.1 200 OK
GET /sbb.appcache HTTP/1.1
HTTP/1.1 200 OK

GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /styles.css HTTP/1.1
HTTP/1.1 200 OK

Dienstag, 11. Februar 14
Server

Browser
GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /*.* HTTP/1.1
HTTP/1.1 200 OK
GET /sbb.appcache HTTP/1.1
HTTP/1.1 200 OK

GET /index.html HTTP/1.1
HTTP/1.1 200 OK
GET /styles.css HTTP/1.1
HTTP/1.1 200 OK
GET /app.js HTTP/1.1
HTTP/1.1 200 OK

Dienstag, 11. Februar 14
offline resource cache

64.88%

22 15 12 5.1 10
Mobile
Dienstag, 11. Februar 14

Desktop

WWW
live reload
demo reload
reload
Dienstag, 11. Februar 14
Application state
Dienstag, 11. Februar 14
localStorage
{
setLastCheckDate: function() {
localStorage.lastCacheCheck = new Date();
console.log(typeof localStorage.lastCacheCheck); // string
},
getLastCheckDate: function () {
if (localStorage.lastCacheCheck) {
return new Date(localStorage.lastCacheCheck);
} else {
return undefined;
}
}
}

Dienstag, 11. Februar 14
localStorage
var storage = {
store: function(name, obj) {
localStorage[name] = JSON.stringify(obj);
},
read: function (name) {
if (localStorage[name]) {
return JSON.parse(localStorage[name]);
} else {
return undefined;
}
}
};

Dienstag, 11. Februar 14
localStorage and sessionStorage

91.85%

22 15 12 5.1 8
Mobile
Dienstag, 11. Februar 14

Desktop

WWW
Data sources
Dienstag, 11. Februar 14
SQL select
var db = openDatabase("fahrplan", "1.0", "SBB",
50*1024*1024);
db.transaction(function(tx) {
tx.executeSql("SELECT * FROM favorite", [],
! ! ! function success (tx, rs) {
! ! ! ! callback({
! ! ! ! ! connections: rs.rows
! ! ! ! });
! ! ! },
! ! ! function error () {
! ! ! ! console.error(arguments);
! ! ! }
);
});
Dienstag, 11. Februar 14
SQL insert
transaction.executeSql(
! "INSERT INTO favorite(dep, arrival)" +
! "VALUES (?,?)",
! [
! connection.departure,
! connection.arrival
],
! successHandler,
! errorHandler
);
Dienstag, 11. Februar 14
45.44%

Web SQL API

22
Mobile
Dienstag, 11. Februar 14

-

12 5.1
Desktop

-

WWW
Indexed DB API

22 15
Mobile
Dienstag, 11. Februar 14

17.92%

Desktop

-

10
WWW
Indexed or SQL DB API

~60%

22 15 12 5.1 10
Mobile
Dienstag, 11. Februar 14

Desktop

WWW
Network monitoring
Dienstag, 11. Februar 14
network state
window.addEventListener("offline", function(e) {
$("#network-monitor").removeClass("online");
}, false);
window.addEventListener("online", function(e) {
$("#network-monitor").addClass("online");
}, false);
var search = function (callback) {
if (navigator.onLine) {
$.ajax({success: callback});
} else {
callback(localStorage.lastSearch);
}
}
Dienstag, 11. Februar 14
navigator.connection

navigator.connection.bandwidth
navigator.connection.metered

Dienstag, 11. Februar 14
navigator.connection.type

Connection.UNKNOWN
Connection.ETHERNET
Connection.WIFI
Connection.CELL_2G
Connection.CELL_3G
Connection.CELL_4G
Connection.NONE
Dienstag, 11. Februar 14
Server availability
// register global ajax handlers
$(document).ajaxSuccess(setOnline);
$(document).ajaxError(setOffline);
// check for backend server availabiliy
var checkServerAvailability = function (callback) {
! $.ajax({
!
url: "data/probe.json",
! ! dataType: "json",
! ! timeout: CONNECTION_TIMEOUT,
! ! complete: callback || function () {}
! });
};
checkServerAvailability();

Dienstag, 11. Februar 14
Platform
integration
Dienstag, 11. Februar 14
WWW

Cordova/
Worklight

Windows RT

Safari iOS

Firefox Aurora

Firefox Android

CEF/App.js/
Brakets shell

Dienstag, 11. Februar 14

Mobile

OSX Dashboard

standalone

Desktop

Firefox OS
Desktop

Mobile
standalone

standalone

OSX Dashboard

Cordova/
Worklight

Windows RT

Safari iOS

Firefox Aurora

Firefox Android

standalone

WWW

CEF/App.js/
Brakets shell

Dienstag, 11. Februar 14

standalone

Firefox OS
Desktop

Mobile
standalone

Cordova/
Worklight

standalone

OSX Dashboard
Appstore

Windows RT

Safari iOS

Appstore

standalone

WWW

CEF/App.js/
Brakets shell

Appstore

Appstore

Firefox Android

Firefox Aurora
standalone

Dienstag, 11. Februar 14

Appstore

Appstore

Firefox OS

Appstore
Modern Browsers

+
+
+
+
+
Dienstag, 11. Februar 14

Desktop/Tablet/Phone
Simple Deployment
Bookmark, Favorites, Pinned Site/Tabs
Browser Home als Einstiegspunkt
Fullscreen Modus verfügbar
keine Desktop-Integration
Abhängigkeit vom Browser als Platform
Add to Home Screen

Dienstag, 11. Februar 14
Add to Home Screen

Dienstag, 11. Februar 14
Add to Home Screen

Dienstag, 11. Februar 14
live reload
demo reload
reload
Dienstag, 11. Februar 14
iOS und Android Apps

Dienstag, 11. Februar 14
Chromium
Embedding Framework

+
+
+
Dienstag, 11. Februar 14

Desktop-Integration
Standalone für Win/Mac/Lin
einheitliche HTML/JS-Engine
Installer notwendig
Build- und Konfigurationsskills
Firefox OS/
Marketplace

Dienstag, 11. Februar 14
Dienstag, 11. Februar 14
@marcbaechinger

ks for
tha n
ening
list

Q&A
Browsercoveragedaten: caniuse.com
Dienstag, 11. Februar 14
Backup slides

Dienstag, 11. Februar 14
Wsasx

0.0002%

22 15 12 5.1 8
Mobile
Dienstag, 11. Februar 14

Desktop

WWW
feature testing
Dienstag, 11. Februar 14
Sencha Desktop
Packager

Dienstag, 11. Februar 14
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache

reload
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache

reload
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache

reload
reload
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache

reload
reload
server log
debug:
debug:
debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving
serving
serving

file
file
file
file
file
file
file
file

at:
at:
at:
at:
at:
at:
at:
at:

src/index.html
src/sbb.appcache
src/css/bootstrap.css
src/css/style.css
src/css/bootstrap-responsive.css
src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg

debug:
debug:
debug:
debug:
debug:
debug:

serving
serving
serving
serving
serving
serving

file
file
file
file
file
file

at:
at:
at:
at:
at:
at:

src/lib/jquery-1.8.2.js
src/javascript/main.js
src/img/train.jpg
src/css/style.css
src/css/bootstrap.css
src/css/bootstrap-responsive.css

debug:
debug:
debug:

serving file at:
serving file at:
serving file at:

Dienstag, 11. Februar 14

src/sbb.appcache
src/sbb.appcache
src/sbb.appcache

reload
reload
reload
The HTML(5)
(r)evolution
Dienstag, 11. Februar 14
HTML5 is a conspiracy theory!
• Standardisierung existierender, fortgeschrittener
Browserfeatures

• Öffentlichkeitswirksame Promotion der
Webtechnologie

• Google, Mozilla, Apple, Opera, Microsoft
• die Gunst der x-platform-Problematik nutzend
• von der Webpage zur Webapplication
• mobile is a game changer
Dienstag, 11. Februar 14
JavaScript APIs

JavaScript API werden Web Standards

Dienstag, 11. Februar 14
CSS3 - runde Ecken machen glücklich
•
•
•
•
•

box-sizing
border-radius
opacity
box-shadow, text-shadow
gradients

•

transitions, animations (GPU support)

•

@media queries

•
•
•

simplifizierte DOM-Struktur (tables must die!)
skalierbare, hi-res GUIs (no bitmaps)
Responsive Design

Dienstag, 11. Februar 14
<!DOCTYPE html>

http://www.html5rocks.com
Dienstag, 11. Februar 14
Das Web wurde eine RIA Platform
• Browserkonvergenz auf hohem Niveau
• fortgeschrittener CSS Support
• Offline und Storage features
• Performance- und Reliability-Boost
• Vendor-Kooperation und Ökosystem
• Applikationen statt Websites (shift of mind)
• erprobte MVC-Architekturen
Dienstag, 11. Februar 14

More Related Content

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

HTML5 unplugged