OSDN Git Service

Regular updates
[twpd/master.git] / html-microformats.md
1 ---
2 title: Microformats
3 category: HTML
4 layout: 2017/sheet
5 ---
6
7 ### Author
8
9 ``` html
10 <span class="entry-author" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person">
11   <a href="http://AUTHORPAGE" class="entry-author-link" itemprop="url" rel="author">
12     <span class="entry-author-name" itemprop="name">AUTHORNAME</span>
13   </a>
14 </span>
15 ```
16
17 ### Time
18
19 ``` html
20 <time class="entry-time" itemprop="datePublished" datetime="2009-02-09T20:04:00+00:00">February 9, 2009</time>
21 ```