{"id":4057,"date":"2010-11-10T13:53:02","date_gmt":"2010-11-10T13:53:02","guid":{"rendered":"http:\/\/www.lamorbidamacchina.com\/ssssimone\/?p=4057"},"modified":"2010-11-10T13:53:02","modified_gmt":"2010-11-10T13:53:02","slug":"4057","status":"publish","type":"post","link":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/4057\/","title":{"rendered":""},"content":{"rendered":"<table width=\"650\">\n<tr>\n<td width=\"650\">\n<div style=\"width:650px\"> <img decoding=\"async\" src=\"http:\/\/statisches.auslieferung.commindo-media-ressourcen.de\/advertisement.gif\" alt=\"Advertisement in Learning to Love HTML5\" border=\"0\"><br \/> <a href=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/ck.php?zoneid=34\"><img decoding=\"async\" src=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/avw.php?zoneid=34\" border=\"0\" alt=\" in Learning to Love HTML5\"><\/a> <a href=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/ck.php?zoneid=35\"><img decoding=\"async\" src=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/avw.php?zoneid=35\" border=\"0\" alt=\" in Learning to Love HTML5\"><\/a> <a href=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/ck.php?zoneid=36\"><img decoding=\"async\" src=\"http:\/\/auslieferung.commindo-media-ressourcen.de\/www\/delivery\/avw.php?zoneid=36\" border=\"0\" alt=\" in Learning to Love HTML5\"><\/a><\/div>\n<\/td>\n<\/tr>\n<\/table>\n<p>It seems that new resources and articles for teaching and promoting HTML5 are popping up almost daily. We\u2019ve been given HTML5 templates in the form of <a href=\"http:\/\/html5boilerplate.com\/\">the HTML5 boilerplate<\/a> and <a href=\"http:\/\/html5reset.org\/\">HTML5 Reset<\/a> (although they both go beyond just HTML5 stuff). We\u2019ve got a <a href=\"http:\/\/www.webdesignerdepot.com\/2010\/05\/html5-and-css3-books-to-watch-for-in-2010\/\">plethora of books<\/a> to choose from that cover HTML5 and its related technologies. We\u2019ve got <a href=\"http:\/\/code.google.com\/p\/html5shiv\/\">shivs<\/a>, <a href=\"http:\/\/html5gallery.com\/\">galleries<\/a>, and a <a href=\"http:\/\/html5doctor.com\/\">physician<\/a> to help heal your HTML5 maladies. And don\u2019t forget <a href=\"http:\/\/dev.w3.org\/html5\/spec-author-view\/spec.html\">the official spec<\/a>.<\/p>\n<p>From my own vantage point \u2014 aside from a few <a href=\"http:\/\/jeffcroft.com\/blog\/2010\/aug\/02\/term-html5\/\">disputes<\/a> about what the term \u201cHTML5\u2033 should and shouldn\u2019t mean \u2014 the web design and development community has for the most part embraced all the new technologies and semantics with a positive attitude.<\/p>\n<p><a href=\"http:\/\/www.flickr.com\/photos\/adactio\/4764451727\/\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/farm5.static.flickr.com\/4122\/4764451727_2a3517a25f_z.jpg\" width=\"500\" height=\"375\" alt=\"4764451727 2a3517a25f Z in Learning to Love HTML5\"><\/a><br \/><em>Flickr Photo <a href=\"http:\/\/www.flickr.com\/photos\/adactio\/4764451727\/\">by Jeremy Keith<\/a><\/em><\/p>\n<p>While it\u2019s certainly true that HTML5 has the potential to change the web for the better, the reality is that these kinds of major changes can be difficult to grasp and embrace. I\u2019m personally in <strong>the process of gaining a better understanding of the subtleties of HTML5\u2032s various new features<\/strong>, so I thought I would discuss some things associated with HTML5 that appear to be somewhat confusing, and maybe this will help us all understand certain aspects of the language a little better, enabling us to use the new features in the most practical and appropriate manner possible.<\/p>\n<h3>The Good (and Easy) Parts<\/h3>\n<p>The good stuff in HTML5 has been discussed pretty solidly in a number of sources including books <a href=\"http:\/\/introducinghtml5.com\/\">by Bruce Lawson<\/a>, <a href=\"http:\/\/books.alistapart.com\/products\/html5-for-web-designers\">Jeremy Keith<\/a>, and <a href=\"http:\/\/diveintohtml5.org\/\">Mark Pilgrim<\/a>, to name a few. The benefits gained from using HTML5 include improved semantics, reduced redundancies, and inclusion of new features that minimize the need for complex scripting to achieve standard tasks (like input validation in forms, for example).<\/p>\n<p>I think those are all commendable improvements in the evolution of the web\u2019s markup language. <strong>Some of the improvements, however, are a little confusing<\/strong>, and do seem to be a bit revolutionary, as opposed to evolutionary, the latter of which is <a href=\"http:\/\/www.w3.org\/TR\/html-design-principles\/#evolution-not-revolution\">one of the design principles<\/a> on which HTML5 is based. Let\u2019s look at a few examples, so we can see how flexible and valuable some of the new elements really are \u2014 once we get past some of the confusion.<\/p>\n<h3>An &lt;article&gt; Isn\u2019t Just an Article<\/h3>\n<p>Among the additions to the semantic elements are the new <code>&lt;section&gt;<\/code> and <code>&lt;article&gt;<\/code> tags, which will replace certain instances of semantically meaningless <code>&lt;div&gt;<\/code> tags that we\u2019re all accustomed to in XHTML. The problem arises when we try to decipher how these tags should be used.<\/p>\n<p>Someone new to the language would probably assume that an <code>&lt;article&gt;<\/code> element would represent a single article like a blog post. But this is not always the case.<\/p>\n<p>Let\u2019s consider a blog post as an example, which is the same example <a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/sections.html#the-article-element\">used in the spec<\/a>. Naturally, we would think a blog post marked up in HTML5 would look something like this:<\/p>\n<pre> &lt;article&gt; &lt;h1&gt;Title of Post&lt;\/h1&gt; &lt;p&gt;Content of post...&lt;\/p&gt; &lt;p&gt;Content of post...&lt;\/p&gt; &lt;\/article&gt; &lt;section&gt; &lt;section&gt; &lt;p&gt;Comment by: Comment Author&lt;\/p&gt; &lt;p&gt;Comment #1 goes here...&lt;\/p&gt; &lt;\/section&gt; &lt;section&gt; &lt;p&gt;Comment by: Comment Author&lt;\/p&gt; &lt;p&gt;Comment #2 goes here...&lt;\/p&gt; &lt;\/section&gt; &lt;section&gt; &lt;p&gt;Comment by: Comment Author&lt;\/p&gt; &lt;p&gt;Comment #3 goes here...&lt;\/p&gt; &lt;\/section&gt; &lt;\/section&gt; <\/pre>\n<p>For brevity, I\u2019ve left out some of the other HTML5 tags that might go into such an example. In this example, the <code>&lt;article&gt;<\/code> tags wrap the entire article, then the \u201csection\u201d below it wraps all the comments, each of which is in its own \u201csection\u201d element.<\/p>\n<p>It would not be invalid or wrong to structure a blog post like this. But according to the way <code>&lt;article&gt;<\/code> is described in the spec, the <code>&lt;article&gt;<\/code> element should wrap the entire article <em>and the comments<\/em>. Additionally, each comment itself could be wrapped in <code>&lt;article&gt;<\/code> tags that are nested within the main <code>&lt;article&gt;<\/code> tag.<\/p>\n<p>Below is a screen grab from the spec, with <code>&lt;article&gt;<\/code> tags indicated:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/media.smashingmagazine.com\/cdn_smash\/wp-content\/uploads\/2010\/10\/html5-articles.jpg\" alt=\"Html5-articles in Learning to Love HTML5\" width=\"500\" height=\"402\"><br \/><em>Article tags can be nested inside article tags \u2014 a concept that seems confusing at first glance.<\/em><\/p>\n<p>So, an <code>&lt;article&gt;<\/code> element can have other <code>&lt;article&gt;<\/code> elements nested inside it, thus complicating how we naturally view the word \u201carticle\u201d. Bruce Lawson, co-author of <a href=\"http:\/\/www.peachpit.com\/store\/product.aspx?isbn=0321687299\">Introducing HTML5<\/a>, attempts to clear up the confusion in <a href=\"http:\/\/www.peachpit.com\/articles\/article.aspx?p=1629150\">this interview<\/a>:<\/p>\n<blockquote>\n<p>\u201cThink of <code>&lt;article&gt;<\/code> not in terms of print, like \u201cnewspaper article\u201d but as a discrete entity like \u201carticle of clothing\u201d that is complete in itself, but can also mix with other articles to make a wider ensemble.\u201d<\/p>\n<p>\u2014 Bruce Lawson<\/p>\n<\/blockquote>\n<p>So keep in mind that you can nest <code>&lt;article&gt;<\/code> elements and an <code>&lt;article&gt;<\/code> element can contain more than just article content. Bruce\u2019s explanation above is very good and is the kind of HTML5 education that\u2019s needed to help us understand how these new elements can be used.<\/p>\n<h3>Section or Article?<\/h3>\n<p>Probably one of the most confusing things to figure out when creating an HTML5 layout is whether or not to use <code>&lt;article&gt;<\/code> or <code>&lt;section&gt;<\/code>. As I write this sentence, I can honestly say I don\u2019t know the difference without actually looking up what the spec says or referencing one of my HTML5 books. But slowly it\u2019s becoming more clear. I think Jeremy Keith defines <code>&lt;article&gt;<\/code> best on page 67 of <em>HTML5 for Web Designers<\/em>:<\/p>\n<blockquote>\n<p>\u201cThe <code>article<\/code> element is [a] specialized kind of <code>section<\/code>. Use it for self-contained related content\u2026 Ask yourself if you would syndicate the content in an RSS or Atom feed. If the content still makes sense in that context, then <code>article<\/code> is probably the right element to use.\u201d<\/p>\n<p>\u2014 Jeremy Keith, <em>HTML5 for Web Designers<\/em><\/p>\n<\/blockquote>\n<p>Keith\u2019s explanation helps a lot, but then he goes on to explain that the difference between <code>&lt;article&gt;<\/code> and <code>&lt;section&gt;<\/code> is quite small, and it\u2019s up to each developer to decide how these elements should be used. And adding to the confusion is the fact that <strong>you can have multiple articles within sections and multiple sections within articles<\/strong>.<\/p>\n<p>As a result, you might wonder why we have both. The main difference is that the <code>&lt;article&gt;<\/code> element is designed for syndication, whereas the <code>&lt;section&gt;<\/code> element is designed for document structure and portability. This simple way to view the differences certainly helps make the two new elements a little more distinct. The important thing to keep in mind here is that, despite our initial confusion, these changes, when more widely adopted, are going to help developers and content creators to improve the way they work and the way content is shared.<\/p>\n<h3>Headers and Footers (Plural!)<\/h3>\n<p>Two other elements introduced in HTML5 are the <code>&lt;header&gt;<\/code> and <code>&lt;footer&gt;<\/code> elements. On the surface, these seem pretty straightforward. For years we\u2019ve marking up our website headers and footers with <code>&lt;div id=&quot;header&quot;&gt;<\/code>, <code>&lt;div id=&quot;footer&quot;&gt;<\/code> or similar. This is great for DOM manipulation and styling, because we can target these elements directly. But they mean nothing semantically.<\/p>\n<blockquote>\n<p>\u201cThe <code>div<\/code> element has no defined semantics, and the <code>id<\/code> attribute has no defined semantics. (User agents are not allowed to infer any meaning from the value of the <code>id<\/code> attribute.)\u201d<\/p>\n<p>\u2014 <a href=\"http:\/\/diveintohtml5.org\/semantics.html#header-element\">Mark Pilgrim, <em>Dive Into HTML5<\/em><\/a><\/p>\n<\/blockquote>\n<p>HTML5\u2032s introduction of <code>&lt;header&gt;<\/code> and <code>&lt;footer&gt;<\/code> elements is the perfect way to remedy this problem of semantics, especially for such often-used elements. But these elements are not as straightforward as they seem. Technically speaking, if every website in the world added one <code>&lt;header&gt;<\/code> and one <code>&lt;footer&gt;<\/code> to each of their pages, this would be perfectly valid HTML5. But these new elements are <strong>not just limited to use as a \u201cwebsite header\u201d and \u201cwebsite footer\u201d<\/strong>.<\/p>\n<p>A header is designed to mark up introductory or navigational aids, and a footer is designed to contain information about the containing element. For example, if you used the footer element as the footer for a full web page, then in that case copyright, policy links, and related content might be appropriate for it to hold. A header on the same page might contain a logo and navigation bar.<\/p>\n<p>But the same page might also include multiple <code>&lt;section&gt;<\/code> elements. Each of those sections is permitted to contain its own header and\/or footer element. Keith sums up the purpose of these elements well:<\/p>\n<blockquote>\n<p>\u201cA <code>header<\/code> will usually appear at the top of a document or section, but it doesn\u2019t have to. It is defined by its content\u2026 rather than its position.\u201d<\/p>\n<p>\u201cLike the <code>header<\/code> element, <code>footer<\/code> sounds like it\u2019s a description of position, but as with <code>header<\/code>, this isn\u2019t the case.\u201d<\/p>\n<p>\u2014 Jeremy Keith, <em>HTML5 for Web Designers<\/em><\/p>\n<\/blockquote>\n<p>And the spec adds to Keith\u2019s clarification <a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/sections.html#the-header-element\">by noting:<\/a><\/p>\n<blockquote>\n<p> \u201cThe header element is not sectioning content; it doesn\u2019t introduce a new section.\u201d<\/p>\n<p>\u2014 <a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/sections.html#the-header-element\">The header element in the HTML5 specification<\/a><\/p>\n<\/blockquote>\n<p>These explanations help dispel any false assumptions we might have about these new elements, so we can understand how these elements can be used. Really, this method of dividing pages into portable and syndicatible content is just <strong>adding semantics to what content creators and developers have been doing for years<\/strong>.<\/p>\n<h3>Headings Down A Different Path<\/h3>\n<p>Prior to HTML5, heading tags (<code>&lt;h1&gt;<\/code> through <code>&lt;h6&gt;<\/code>) were pretty easy to understand. Over the years, <a href=\"http:\/\/www.456bereastreet.com\/archive\/200911\/headings_and_document_structure_conclusions\/\">some best practices<\/a> have been adopted in order to improve semantics, SEO, and accessibility. Generally, we\u2019ve become accustomed to including a single <code>&lt;h1&gt;<\/code> element on each page, with the other heading elements following sequentially without gaps (although sometimes it would be necessary to reverse the order).<\/p>\n<p>With the introduction of HTML5, to use the new structural elements <strong>we need to rethink the way we view the structure of our pages.<\/strong><\/p>\n<p>Here are some things to note about the changes in heading\/document structure in HTML5<\/p>\n<ul>\n<li>Instead of a single <code>&lt;h1&gt;<\/code> element per page, HTML5 best practice encourages up to one <code>&lt;h1&gt;<\/code> for each <code>&lt;section&gt;<\/code> element (or other section defined by some other means)<\/li>\n<li>Although we\u2019re permitted to start a section with an <code>&lt;h2&gt;<\/code> (or lower-ranked) element, it\u2019s <a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/sections.html#headings-and-sections\">strongly encouraged<\/a> to start each <code>&lt;section&gt;<\/code> with an <code>&lt;h1&gt;<\/code> element to help sections become portable<\/li>\n<li>Document nodes are created by sections, not headings (unlike previous versions of HTML)<\/li>\n<li>An <code>&lt;hgroup&gt;<\/code> element is used to group related heading elements that you want to act as a single heading for a defined or implied section; <code>&lt;hgroup&gt;<\/code> is not used on every set of headings, only those that act as a single unit outside of adjacent content<\/li>\n<li>To see if you\u2019re structuring your document correctly, you can use the <a href=\"http:\/\/gsnedders.html5.org\/outliner\/\">HTML5 Outliner<\/a><\/li>\n<li>Despite the above points, whatever heading\/document structure you used in HTML4 or XHTML will still be valid HTML5<\/li>\n<\/ul>\n<p>So, although the old way we structure pages does not amount to invalid HTML5, our view of what constitutes \u201cbest practice\u201d document structure is changing for the better.<\/p>\n<h3>Block or Inline? Neither! (Sort of\u2026)<\/h3>\n<p>For layout and styling purposes, CSS developers are accustomed to HTML elements (for styling and layout purposes) being defined under one of two categories: Block elements and inline elements (although you could divide those two into <a href=\"http:\/\/reference.sitepoint.com\/css\/formattingcontext\">further categories<\/a>). This understanding simplified our expectations of an element\u2019s display on any given page, making it easier (once we grasp the difference between the two) to style and manoeuvre the elements.<\/p>\n<p><strong>HTML5 evolves this concept to include multiple categories<\/strong>, none of which is block or inline. Well, theoretically, block and inline elements still exist, but they do so under different labels. Now the different categories of elements include:<\/p>\n<ul>\n<li><a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/grouping-content.html\">Grouping Content<\/a><\/li>\n<li><a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/text-level-semantics.html\">Text-Level Semantics<\/a><\/li>\n<li><a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/content-models.html#sectioning-content-0\">Sectioning Content<\/a><\/li>\n<li><a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/forms.html#forms\">Form Elements<\/a><\/li>\n<li><a href=\"http:\/\/www.whatwg.org\/specs\/web-apps\/current-work\/multipage\/embedded-content-1.html#embedded-content-1\">Embedded Content<\/a><\/li>\n<\/ul>\n<p>I certainly welcome this kind of improvement to more appropriately categorize elements, and I think developers will adapt well to these changes, but it is important that we promote proper nomenclature to ensure minimal confusion over how these elements will display by default. Of all the areas discussed in this article, however, I think this one is the easiest to grasp and accept.<\/p>\n<h3>Conclusion<\/h3>\n<p>While this summarizes some of what I\u2019ve learned in my study of HTML5, a far better way for anyone to learn about these new features to the markup is to pick up a book on the topic. I highly recommend one of those mentioned in the article, or you can read <a href=\"http:\/\/diveintohtml5.org\/\">Mark Pilgrim\u2019s book<\/a> online.<\/p>\n<p>These new elements and concepts don\u2019t have to be confusing. We can take the time to study them carefully, avoiding confusion and dispelling myths. This will help us enjoy the benefits of these new elements as soon as possible, and will <strong>help developers and content creators pave the way towards a more meaningful web<\/strong> \u2014 a web that, to paraphrase Jeremy Keith, \u2018wouldn\u2019t exist without markup\u2019.<\/p>\n<h3>Related Posts<\/h3>\n<p>You may be interested in the following related posts:<\/p>\n<ul>\n<li><a href=\"http:\/\/www.smashingmagazine.com\/2010\/09\/23\/html5-the-facts-and-the-myths\/\">HTML5: The Facts And The Myths<\/a><\/li>\n<li><a href=\"http:\/\/www.smashingmagazine.com\/2010\/05\/18\/html5-and-flash-why-its-not-a-war-and-why-flash-wont-die\/\">HTML5 And Flash: Why It\u2019s Not A War, And Why Flash Won\u2019t Die<\/a><\/li>\n<li><a href=\"http:\/\/www.smashingmagazine.com\/2009\/08\/04\/designing-a-html-5-layout-from-scratch\/\">Coding A HTML 5 Layout From Scratch<\/a><\/li>\n<li><a href=\"http:\/\/www.smashingmagazine.com\/2009\/07\/16\/html5-and-the-future-of-the-web\/\">HTML5 and The Future of the Web<\/a><\/li>\n<\/ul>\n<hr>\n<p><small>\u00a9 Louis Lazaris for <a href=\"http:\/\/www.smashingmagazine.com\">Smashing Magazine<\/a>, 2010. | <a href=\"http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/\">Permalink<\/a> | <a href=\"http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/#comments\">Post a comment<\/a> | <a title=\"Bookmark in del.icio.us\" href=\"http:\/\/del.icio.us\/post?url=http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/&amp;title=Learning%20to%20Love%20HTML5\">Add to del.icio.us<\/a> | <a title=\"Bookmark in Digg\" href=\"http:\/\/digg.com\/submit?phase=2&amp;url=http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/\">Digg this<\/a> | <a title=\"Stumble on StumbleUpon\" href=\"http:\/\/www.stumbleupon.com\/submit?url=http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/\">Stumble on StumbleUpon!<\/a> | <a title=\"Tweet us!\" href=\"http:\/\/twitter.com\/home?status=@tweetmeme%20@smashingmag%20Reading%20&#39;Learning%20to%20Love%20HTML5&#39;%20http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/\">Tweet it!<\/a> | <a title=\"Bookmark in Reddit\" href=\"http:\/\/reddit.com\/submit?url=http:\/\/www.smashingmagazine.com\/2010\/11\/10\/learning-to-love-html5\/\">Submit to Reddit<\/a> | <a href=\"http:\/\/forum.smashingmagazine.com\/\">Forum Smashing Magazine<\/a><br \/> Post tags: <a href=\"http:\/\/www.smashingmagazine.com\/tag\/html5\/\" rel=\"tag\">html5<\/a><br \/> <\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It seems that new resources and articles for teaching and promoting HTML5 are popping up almost daily. We\u2019ve been given HTML5 templates in the form of the HTML5 boilerplate and HTML5 Reset (although they both go beyond just HTML5 stuff). We\u2019ve got a plethora of books to choose from that cover HTML5 and its related [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-4057","post","type-post","status-publish","format-standard","hentry"],"_links":{"self":[{"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/posts\/4057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/comments?post=4057"}],"version-history":[{"count":0,"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/posts\/4057\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/media?parent=4057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/categories?post=4057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lamorbidamacchina.com\/ssssimone\/wp-json\/wp\/v2\/tags?post=4057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}