Posts

Showing posts with the label #AMP

Learn with Kbdk: AMP Introduction

Image
AMP or Amplify your mobile webpages The  Accelerated Mobile Pages  ( AMP ) Project is a  website  publishing technology developed by Google. Introduction An AMP HTML tutorial - learn the different building blocks of an AMP HTML file. AMP HTML is entirely built on existing web technologies. It achieves reliable performance by restricting some parts of HTML, CSS, and JavaScript. To make up for those limitations AMP HTML defines a set of custom elements for rich content beyond basic HTML. This sample shows what's necessary to create a valid AMP HTML file. The doctype declaration is required. <!doctype html> This tells everyone that this is an AMP file.  <html amp>  works too. < html ⚡ > Head The charset definition must be the first child of the  <head>  tag. < meta charset = "utf-8" > The AMP runtime must be loaded as the second child of the  <head>  tag. ...