October 2017
Intermediate to advanced
370 pages
8h 57m
English
We're not finished converting our page to AMP just yet; let's deal with the validation error that mentions the style sheet next:
The attribute 'href' in tag 'link rel=stylesheet for fonts' is set to the invalid value 'style.css'.
One of the ways that AMP achieves its speed is by forbidding linked external style sheets. This means that all CSS must be inlined in the <head> of your AMP page. Open up the style sheet, and copy-paste all of the CSS rules you find into the AMP document. You'll need to wrap this CSS in a <style amp-custom> tag like this:
<style amp-custom> html, body, ul { margin:0; padding:0; } ...</style>
Read now
Unlock full access