<H2> Connect dots to life with, official.link
QR Codes
Fully featured QR code generator system with easy to use templates.
Custom colors with gradients
Custom logo
Multiple QR shapes to choose from
Vcard, WiFi, Calendar, Location..etc templates
Vcard, WiFi, Calendar, Location..etc templates
Built-in analytics
Easy to understand, yet detailed and comprehensive analytics for all your links. GDPR, CCPA and PECR compliant.
Countries & cities
Referrers & UTMs
Devices & operating systems
Browsers, Languages
/* File Links */
.file-links-background {
background-color: #ecfdf5;
}
.file-links-icon {
color: #10b981;
}
/* VCard Links */
.vcard-links-background {
background-color: #ecfeff;
}
.vcard-links-icon {
color: #06b6d4;
}
/* Event Links */
.event-links-background {
background-color: #eef2ff;
}
.event-links-icon {
color: #6366f1;
}
/* Splash pages */
.splash-pages-background {
background-color: #eef2ff;
}
.splash-pages-icon {
color: #06b6d4;
}
/* Domains */
.domains-background {
background-color: #faf5ff;
}
.domains-icon {
color: #a855f7;
}
/* Projects */
.projects-background {
background-color: #fdf4ff;
}
.projects-icon {
color: #d946ef;
}
/* File Links - Dark Theme */
[data-theme-style="dark"] .file-links-background {
background-color: #1a4731;
}
[data-theme-style="dark"] .file-links-icon {
color: #047857;
}
/* VCard Links - Dark Theme */
[data-theme-style="dark"] .vcard-links-background {
background-color: #1a4044;
}
[data-theme-style="dark"] .vcard-links-icon {
color: #025e73;
}
/* Event Links - Dark Theme */
[data-theme-style="dark"] .event-links-background {
background-color: #1a1c36;
}
[data-theme-style="dark"] .event-links-icon {
color: #3134a1;
}
/* Splash pages - Dark Theme */
[data-theme-style="dark"] .splash-pages-background {
background-color: #1a1c36;
}
[data-theme-style="dark"] .splash-pages-icon {
color: #025e73;
}
/* Domains - Dark Theme */
[data-theme-style="dark"] .domains-background {
background-color: #2d1e3f;
}
[data-theme-style="dark"] .domains-icon {
color: #6d22a5;
}
/* Projects - Dark Theme */
[data-theme-style="dark"] .projects-background {
background-color: #321a36;
}
[data-theme-style="dark"] .projects-icon {
color: #a316af;
}
Event links
Dynamically create downloadable & tracked calendar files.
Custom domains
Connect your own domain or use our predefined ones.
Projects
Easiest way to categorize your managed resources.
Links
13K+
QR Codes
310+
Tracked pageviews
13M+
Tracking Pixels
Unlock Powerful Insights and Optimize Your Marketing
Unlock the power of data-driven decisions with tracking pixels.
Effortlessly integrate any of the leading pixel providers with your links and pages, whether you're an individual or a business. Get a clear understanding of your audience's behavior, measure campaign performance, and optimize your marketing strategies for maximum impact.
All the official links in the official link directory can be easily integrated with any of the following pixel providers:
Facebook
Google Analytics
Google Tag Manager
LinkedIn
Pinterest
X
Quora
TikTok
Snapchat
Continue
Continue with getting started on something amazing today!?
Sign up
Copyright © 2024 official.link.
Blog
Affiliate
Contact
Cookies
official.link Beta
Privacy Policy
Terms & Conditions
Report a violation
keywords and brand name policy
Third Party Ad Network
News
About Us
/* Some global variables */
window.altum = {};
let global_token = document.querySelector('input[name="global_token"]').value;
let site_url = document.querySelector('input[name="global_site_url"]').value;
let url = document.querySelector('input[name="global_url"]').value;
let decimal_point = document.querySelector('[name="global_number_decimal_point"]').value;
let thousands_separator = document.querySelector('[name="global_number_thousands_separator"]').value;
'use strict';
let payment_frequency_handler = (event = null) => {
let payment_frequency = null;
if(event) {
payment_frequency = $(event.currentTarget).data('payment-frequency');
} else {
payment_frequency = $('[name="payment_frequency"]:checked').closest('label').data('payment-frequency');
}
switch(payment_frequency) {
case 'monthly':
$(`[data-plan-payment-frequency="annual"]`).removeClass('d-inline-block').addClass('d-none');
$(`[data-plan-payment-frequency="lifetime"]`).removeClass('d-inline-block').addClass('d-none');
break;
case 'annual':
$(`[data-plan-payment-frequency="monthly"]`).removeClass('d-inline-block').addClass('d-none');
$(`[data-plan-payment-frequency="lifetime"]`).removeClass('d-inline-block').addClass('d-none');
break
case 'lifetime':
$(`[data-plan-payment-frequency="monthly"]`).removeClass('d-inline-block').addClass('d-none');
$(`[data-plan-payment-frequency="annual"]`).removeClass('d-inline-block').addClass('d-none');
break
}
$(`[data-plan-payment-frequency="${payment_frequency}"]`).addClass('d-inline-block');
$(`[data-plan-${payment_frequency}="true"]`).removeClass('d-none').addClass('');
$(`[data-plan-${payment_frequency}="false"]`).addClass('d-none').removeClass('');
};
$('[data-payment-frequency]').on('click', payment_frequency_handler);
payment_frequency_handler();
AOS.init({
delay: 100,
duration: 600
});
document.querySelector('#switch_theme_style') && document.querySelector('#switch_theme_style') && document.querySelector('#switch_theme_style').addEventListener('click', event => {
let theme_style = document.querySelector('body[data-theme-style]').getAttribute('data-theme-style');
let new_theme_style = theme_style == 'light' ? 'dark' : 'light';
/* Set a cookie with the new theme style */
set_cookie('theme_style', new_theme_style, 30, "\/");
/* Change the css and button on the page */
let css = document.querySelector(`#css_theme_style`);
document.querySelector(`body[data-theme-style]`).setAttribute('data-theme-style', new_theme_style);
switch(new_theme_style) {
case 'dark':
css.setAttribute('href', "https:\/\/official.link\/themes\/altum\/assets\/css\/bootstrap-dark.min.css?v=4900");
document.body.classList.add('cc--darkmode');
break;
case 'light':
css.setAttribute('href', "https:\/\/official.link\/themes\/altum\/assets\/css\/bootstrap.min.css?v=4900");
document.body.classList.remove('cc--darkmode');
break;
}
/* Refresh the logo/title */
document.querySelectorAll('[data-logo]').forEach(element => {
let new_brand_value = element.getAttribute(`data-${new_theme_style}-value`);
let new_brand_class = element.getAttribute(`data-${new_theme_style}-class`);
let new_brand_tag = element.getAttribute(`data-${new_theme_style}-tag`)
let new_brand_html = new_brand_tag == 'img' ? `` : `${new_brand_value}`;
element.innerHTML = new_brand_html;
});
document.querySelector(`#switch_theme_style`).setAttribute('data-original-title', document.querySelector(`#switch_theme_style`).getAttribute(`data-title-theme-style-${theme_style}`));
document.querySelector(`#switch_theme_style [data-theme-style="${new_theme_style}"]`).classList.remove('d-none');
document.querySelector(`#switch_theme_style [data-theme-style="${theme_style}"]`).classList.add('d-none');
$(`#switch_theme_style`).tooltip('hide').tooltip('show');
event.preventDefault();
});
:root {
--cc-font-family: inherit;
--cc-bg: var(--white);
--cc-separator-border-color: var(--white);
--cc-modal-border-radius: var(--border-radius);
--cc-btn-border-radius: var(--border-radius);
--cc-primary-color:var(--gray-700);
--cc-secondary-color:var(--gray-600);
--cc-btn-primary-color: var(--white);
--cc-btn-primary-bg: var(--primary);
--cc-btn-primary-hover-bg: var(--primary-600);
--cc-btn-primary-color-bg: var(--white);
--cc-btn-primary-hover-color: var(--white);
--cc-btn-secondary-bg:var(--gray-300);
--cc-btn-secondary-hover-bg:var(--gray-400);
--cc-btn-secondary-hover-color: var(--black);
--cc-btn-secondary-hover-border-color: var(--cc-btn-secondary-hover-bg);
}
.cc--darkmode {
--cc-bg: var(--white);
}
window.addEventListener('load', () => {
let language_code = document.documentElement.getAttribute('lang');
let language_direction = document.documentElement.getAttribute('dir');
let translations = {};
translations[language_code] = {
consentModal: {
title: "We use cookies \ud83c\udf6a",
description: "Hi, this website uses essential cookies to ensure its proper operation and tracking cookies to understand how you interact with it. The latter will be set only after consent.",
acceptAllBtn: "Accept all",
acceptNecessaryBtn: "Reject all",
showPreferencesBtn: "Customize",
},
preferencesModal: {
title: "Cookie preferences",
acceptAllBtn: "Accept all",
acceptNecessaryBtn: "Reject all",
savePreferencesBtn: "Save settings",
closeIconLabel: "Close",
sections: [
{
title: "Cookie usage \ud83d\udce2",
description: "We use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in\/out whenever you want. For more details relative to cookies and other sensitive data, please read the full privacy policy." },
{
title: "Strictly necessary cookies",
description: "These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.",
linkedCategory: 'necessary'
},
{
title: "Performance and Analytics cookies",
description: "These cookies allow the website to remember the choices you have made in the past.",
linkedCategory: 'analytics'
},
{
title: "Advertisement and Targeting cookies",
description: "These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you.",
linkedCategory: 'targeting'
},
]
}
};
CookieConsent.run({
categories: {
necessary: {
enabled: true,
readOnly: true,
},
analytics: {},
targeting: {},
},
language: {
rtl: language_direction == 'rtl' ? language_code : null,
default: language_code,
autoDetect: 'document',
translations
},
onFirstConsent: () => {
const preferences = CookieConsent.getUserPreferences();
if(!get_cookie('cookie_consent_logged')) {
navigator.sendBeacon(`${url}cookie-consent`, JSON.stringify({global_token, level: preferences.acceptedCategories}));
set_cookie('cookie_consent_logged', '1', 182, "\/");
}
},
onChange: () => {
const preferences = CookieConsent.getUserPreferences();
navigator.sendBeacon(`${url}cookie-consent`, JSON.stringify({global_token, level: preferences.acceptedCategories}));
set_cookie('cookie_consent_logged', '1', 182, "\/");
},
guiOptions: {
consentModal: {
layout: "cloud",
position: "bottom center",
flipButtons: false
},
preferencesModal: {
layout: 'box',
}
},
});
});
</H2> |
Social
Social Data
Cost and overhead previously rendered this semi-public form of communication unfeasible.
But advances in social networking technology from 2004-2010 has made broader concepts of sharing possible.