Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
AMP: Building Accelerated Mobile Pages
AMP: Building Accelerated Mobile Pages

AMP: Building Accelerated Mobile Pages: Create lightning-fast mobile pages by leveraging AMP technology

eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

AMP: Building Accelerated Mobile Pages

Building Your First AMP Page

In this chapter, we're going to build on the boilerplate code from the previous chapter. We'll see how to build a simple news article page, while highlighting similarities and differences between AMP-HTML and regular HTML.

We'll also learn about AMP validation. Validation is a key step in the AMP development workflow. We'll see what happens when you use HTML tags that aren't permitted and we'll learn how to develop and debug AMP pages, making use of the AMP validator and browser developer console as indispensable tools. What AMP takes with one hand in restricting HTML tags, it gives with the other, in providing custom elements. We'll see how custom elements can be used in your AMP pages to add functionality otherwise unavailable.

So, in this chapter we'll be covering:

  • How to develop pages in AMP, and how to...

Going from HTML to AMP-HTML

Assuming that you have a basic familiarity with HTML, we'll use a simple HTML5 news page as our jump-in point, and we'll convert it to AMP-HTML. Unless you are building a canonical AMP page, that is, a standalone AMP page that doesn't have a desktop counterpart, then a common task you may find yourself doing is converting a full HTML page to AMP-HTML. That's what we're going to do now.

Below is a screenshot of the page we'll be working with. It's a simplified version of a typical news article page. It includes some key items that we'll convert to AMP-HTML in this chapter. These are the header, logo, nav menu, article title, feature image, article content, and footer. In subsequent chapters we'll refine and improve the AMP page as we go along.

Our first AMP page!

The HTML behind this page is listed below...

Validating your AMP pages

Now that we've included the AMP-JS library we have access to a very important component of AMP that comes bundled with the library: the AMP validator. We briefly touched on AMP validation in the last chapter. Let's look at it in a bit more detail now.

Validation is useful because it will tell us when there are issues with our AMP pages, and it will report which part of a page has caused a problem. If an AMP page doesn't validate, it won't be included in the AMP Cache, and while it will still generally load quickly, it won't enjoy the benefit of instant loading that the cache brings.

Time to validate! If there's one thing that AMP is not short on, it's validation tools. There are a few different ways we can validate our pages.

...

Using JavaScript in AMP pages

Let's deal with our first non-boilerplate error message:

The tag 'script' is disallowed except in specific forms.

In AMP, to guarantee performance, the use of JavaScript is greatly restricted. You can't write your own scripts, or include non-AMP JavaScript code. To fix this error, just remove the following line from your AMP document.

<script type="text/javascript" src="script.js"></script>

Don't worry, it's not needed. It was only included to demonstrate what the validator thinks of you including your own JavaScript!

Using CSS in AMP pages

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>
You can only have one <style> tag in your AMP document, and it must include the amp-custom attribute.

Inlined CSS is limited to 50 KB per page, which is considered...

Your first AMP component - <amp-img>

The next validation error message is interesting:

The tag 'img' may only appear as a descendant of tag 'noscript'. Did you mean 'amp-img'?

This error deserves special attention: it's the first error that's complaining about what looks to be standard use of an HTML tag. It's basically telling us that the HTML <img> tag is not permitted in AMP, and it's suggesting an alternative <amp-img>.

Let's try to swap in <amp-img> in place of our <img> tag. Copy this line in instead:

<amp-img src="https://theampbook.com/ch2/lightning.jpg"></amp-img>

Note the closing </amp-img> tag. The HTML img tag is a void tag, which means that it doesn't need to be explicitly closed. However, the same does not hold for amp-img; so you must close it explicitly...

Going from HTML to AMP-HTML


Assuming that you have a basic familiarity with HTML, we'll use a simple HTML5 news page as our jump-in point, and we'll convert it to AMP-HTML. Unless you are building a canonical AMP page, that is, a standalone AMP page that doesn't have a desktop counterpart, then a common task you may find yourself doing is converting a full HTML page to AMP-HTML. That's what we're going to do now.

Below is a screenshot of the page we'll be working with. It's a simplified version of a typical news article page. It includes some key items that we'll convert to AMP-HTML in this chapter. These are the header, logo, nav menu, article title, feature image, article content, and footer. In subsequent chapters we'll refine and improve the AMP page as we go along.

 

Our first AMP page!

The HTML behind this page is listed below, and can also be found at /ch2/news.html. There's nothing difficult here, but if you don't understand this markup, now would be a good time to brush up on your HTML...

Validating your AMP pages


Now that we've included the AMP-JS library we have access to a very important component of AMP that comes bundled with the library: the AMP validator. We briefly touched on AMP validation in the last chapter. Let's look at it in a bit more detail now.

Validation is useful because it will tell us when there are issues with our AMP pages, and it will report which part of a page has caused a problem. If an AMP page doesn't validate, it won't be included in the AMP Cache, and while it will still generally load quickly, it won't enjoy the benefit of instant loading that the cache brings.

Time to validate! If there's one thing that AMP is not short on, it's validation tools. There are a few different ways we can validate our pages.

Developer tools console

The browser developer console is probably the easiest way to start validating your pages. Since the validator is included in the AMP-JS library, you can validate every page out of the box. To validate an AMP page, open the...

Using JavaScript in AMP pages


Let's deal with our first non-boilerplate error message:

The tag 'script' is disallowed except in specific forms.

In AMP, to guarantee performance, the use of JavaScript is greatly restricted. You can't write your own scripts, or include non-AMP JavaScript code. To fix this error, just remove the following line from your AMP document.

<script type="text/javascript" src="script.js"></script>

Don't worry, it's not needed. It was only included to demonstrate what the validator thinks of you including your own JavaScript!

Using CSS in AMP pages


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>

Note

You can only have one <style> tag in your AMP document, and it must include the amp-custom attribute.Inlined CSS is limited to 50 KB per page, which is considered enough to style a single page

If you reload the page now, you should see that the CSS validation error message is now resolved.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • The first book for web developers that shows how to put AMP to work
  • Improve your website's mobile experience and get more traffic
  • Practical methods to achieve a step change in performance quickly and easily

Description

Google introduced the Accelerated Mobile Pages (AMP) project to give mobile users lightning-fast response times when accessing web pages on mobile devices. AMP delivers great user experiences by providing a framework for optimizing web pages that otherwise would take much longer to load on a mobile platform. This book shows how to solve page performance issues using the mobile web technologies available today. You will learn how to build instant-loading web pages, and have them featured more prominently on Google searches. If you want your website to succeed on mobile, if you care about SEO, and if you want to stay competitive, then this book is for you! You will go on a mobile web development journey that demonstrates with concrete examples how to build lightning-fast pages that will keep your visitors on-site and happy. This journey begins by showing how to build a simple blog article-style web page using AMP. As new concepts are introduced this page is gradually refined until you will have the skills and confidence to build a variety of rich and interactive mobile web pages. These will include e-commerce product pages, interactive forms and menus, maps and commenting systems, and even Progressive Web Apps.

Who is this book for?

This book is for experienced web developers who are aware of the impact of slow-loading web pages on conversion rates and user engagement, and who are seeking to serve content to their end users in a rich and enticing way using the Accelerated Mobile Pages framework. You should be familiar with HTML5, CSS3, JavaScript, and JSON.

What you will learn

  • Build, validate, and deploy AMP pages
  • Create interactive user notifications, navigation menus, accordions, contact pages with forms and maps
  • Monetize your traffic with a variety of ad styles and providers
  • Analyze your traffic by integrating analytics providers and tracking user-behavior along several dimensions
  • Embed social media with amp-youtube, amp-instagram, amp-twitter, and amp-facebook
  • Build e-commerce functionality including product pages and shopping carts
  • Deliver rich media experiences using AMP custom elements
  • Use advanced deployment techniques to extend functionality
  • Install ServiceWorkers and build Progressive Web Apps for offline use

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 05, 2017
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781786462190
Vendor :
Google
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Oct 05, 2017
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781786462190
Vendor :
Google
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 106.97
AMP: Building Accelerated Mobile Pages
€36.99
Progressive Web Apps with React
€36.99
Responsive Web Design by Example
€32.99
Total 106.97 Stars icon
Banner background image

Table of Contents

16 Chapters
Ride the Lightning with AMP Chevron down icon Chevron up icon
Building Your First AMP Page Chevron down icon Chevron up icon
Making an Impression - Layout and Page Design in AMP Chevron down icon Chevron up icon
Engaging Users with Interactive AMP Components Chevron down icon Chevron up icon
Building Rich Media Pages in AMP Chevron down icon Chevron up icon
Making Contact - Forms in AMP Chevron down icon Chevron up icon
Dynamic Content and Data-Driven Interaction Chevron down icon Chevron up icon
Programming in AMP - amp-bind Chevron down icon Chevron up icon
When AMP Is Not Enough - Enter the iframe Chevron down icon Chevron up icon
Ads and Analytics in AMP Chevron down icon Chevron up icon
AMP Deployment and Your Web Presence Chevron down icon Chevron up icon
AMP - Where It&#x27;s At and Where It&#x27;s Going Chevron down icon Chevron up icon
AMP Components Chevron down icon Chevron up icon
Actions and Events Chevron down icon Chevron up icon
amp-bind Whitelisted Functions Chevron down icon Chevron up icon
amp-bind Permitted Attribute Bindings Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(4 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Malte Jul 02, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Creator of AMP here. Since I know most of the things in the book, I didn't read it end to end, but I must say that I was surprised how thorough and useful the book is. It covers the basics, but also goes into pretty deep topics one will need to learn about when building advanced sites (such as e-commerce sites) in AMP. While all this info is out there, it certainly helps to have everything nicely compiled in a single source.
Amazon Verified review Amazon
Maurice Nov 15, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Having built lots of traditional Web properties I needed to learn how to optimise for mobile - AMP being a clear choice due to its pervasiveness. This book was perfect for stepping me through the various steps from the basis to quite advanced concepts - the perfect book at the perfect time!
Amazon Verified review Amazon
Patrick O. Nov 12, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got the book to better understand how my user experience of my website's users could be improved by using AMP. The text is well researched with clear, approachable examples.
Amazon Verified review Amazon
thierry Sep 23, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Le site et les exemples sont très utiles
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.