open graph in html

Solutions on MaxInterview for open graph in html by the best coders in the world

showing results for - "open graph in html"
Jazmín
22 Nov 2019
1<!doctype html>
2<html xmlns:og="http://ogp.me/ns#">
3<head>
4<title>The Rock (1996)</title>
5<meta property="og:title" content="Cheat Sheet" />
6<meta property="og:type" content="website" />
7<meta property="og:url" content="https://htmlcheatsheet.com/" />
8<meta property="og:image" content="https://htmlcheatsheet.com/demo.jpg" />
9
10<!--optional -->
11<meta property="og:audio" content="https://htmlcheatsheet.com/track.mp3" />
12<meta property="og:description" content="A brief description" />
13<meta property="og:determiner" content="the" />
14<meta property="og:locale" content="en_US" />
15<meta property="og:locale:alternate" content="es_ES" />
16<meta property="og:site_name" content="HTML CheatSheet" />
17<meta property="og:video" content="https://htmlcheatsheet.com/video.swf" />