I'm using font-display: optional to make my fonts optional and just show it to users with fast internet connections. It's not important to have the font there all the times, and the design team doesn't want to have the font swap ocurring.
I was asked if it's possible to track the number of users who were served with the font. The fonts are now self-hosted, we are using Adobe Typekit.
Anyone has any idea how to track it?
How to track how many users saw a web font?
83 views Asked by Emilio Faria At
1
There are 1 answers
Related Questions in CSS
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Is there any way to glow this bulb image like a real light bulb
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- How to increase quality of mathjax output?
- Hover animation resetting( seemingly reverting back to original CSS and then again to hover)when moving mouse horizontaly accross a part of an element
- Storing selected language in localStorage
- How to clip grid cell and provide scroll as well?
- KeyboardAvoidingView makes a messy the flexbox
- Rotate an object around another object in javascript
- Understanding Scroll Anchoring Behavoir
- how to use only block layout in this css code?
Related Questions in FONTS
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- In my Flutter Project, I want to customize the font of a text, but it doesn't work
- Ubuntu wsl2 in windows, my /etc/fonts/fonts.conf keeps reloading
- Problem with sample code to set font properties for a whole XWPF Paragraph that includes Word fields
- I need to display alt characters
- Change back to default font size in Android Studio
- Custom Fonts used in react.js application are not visible after deployment on vercel
- Changing font colour on locked text box
- how to implement ZWJ and NZWJ in fontlab
- The p5js library's loadFont function does not seem to work for me?
- Use Google Font Without Network Connection
- How Can I Use the Poppins Font on My Website (coded with HTML, CSS, and JavaScript)?
- PDField set default appearances multiple fonts - pdfbox 2.0
- Why is my font-weight only switching from normal and bold instead of following the number?
- How to extract font names using PyMuPDF without subsets?
Related Questions in ANALYTICS
- Does docker contain trackers/analytics
- How to update orders customer in real-time in laravel?
- Is there a better way to create a custom analytics dashboard tailored for different users?
- how do i use Latent Dirichlet Allocation with python for my dissertation topic on Trend Analysis of IoT vulnerability
- BigQuery - How to do a Left Join by the closest date?
- I am making a whatsapp chat analyser. I have made the pattern which supports 24-hour chat format. I want it to support 12-hour chat format as well
- Using LEFT( ), RIGHT( ) and LEN( ) functions with custom formatted cells in excel
- keep getting this User does not have sufficient permissions for this profile while calling Google Analytics Reporting API V4
- DAX. Power BI. Profit Potential calculate
- Facebook pixel breakdown by url has only has one url
- Tableau Usage Analytics Report- How to find total users who has access to tableau reports
- Multi variant regression analysis for non-continuous data attributes using Python
- Different numbers coming from Cloudflare, Smartlook, and Vercel analytics
- Excel not formatting dates on csv file
- Mixpanel - Does not seem accurate, events I expect are not seen
Related Questions in WEBFONTS
- Is there @font-face support in gmail — via iOS Mail
- Change font-display - when I don't control @font-face stylesheet
- Results of locating small objects with pyautogui change depending on browser's window size
- Performance issues on Chrome when painting many characters at 80-130px font-size range
- Font Assets not loaded on mobile
- Different browsers are using different fonts
- Browser default font loads instead of fallback font
- How to load google or custom fonts in emails
- I am not getting "CSS rules to specify families" in google fonts
- Nabla font doesn’t have the correct fill color on iPhones
- Partial display of text
- Create react app how to make font accessible on other devices
- Webfonts not working in mail loaded via stylesheet `link`
- @font-face doesn't seem to be displayed, although it is being downloaded
- Unable to Identify Icon Set Family
Related Questions in TYPEKIT
- Wordpress sees copied text from word with diacritics as two characters [iphone typekit font problem]
- How can I implement Adobe Fonts on a website and still maintain strong Core Web Vitals scores?
- Adobe Typekit - Pagespeed Insights - Ensure text remains visible during webfont load
- Using Typekit / Adobe Fonts with @next/font
- Font conditional style CSS
- Adding Custom Typekit/Adobe Fonts to Tiny MCE in React
- Custom CSS in Vimeo OTT
- font-display: block still results in FOUT
- Ensure text remains visible during webfont load - TypeKit PageSpeed Insights
- How can I optimize my fonts on my WordPress website?
- How to track how many users saw a web font?
- Preload typekit font css
- Why are the bottoms of the bowls of my p's and q's in this Typekit font getting cut off?
- Using Typekit (Adobe) fonts on React Native project?
- Dead link in Adobe Font CSS causing TestCafe to Hang?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Firstly, if you were ok with using javascript, this question may help you: How to get the actual rendered font when it's not defined in CSS?
First you would have to define the function given in the accepted answer:
And then you could use it like this:
I would then use
ajaxandphpto upload thefontUsedvariable to amySQLdatabase, creating a new row for each user. You can then process the results and see how many users were served with your font.See the w3schools tutorial on ajax if you need help: https://www.w3schools.com/js/js_ajax_intro.asp