User Tools

Site Tools


form:www:html

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
form:www:html [2018/06/08 14:05] – created rjtform:www:html [2018/06/08 14:20] – Testing definition list plugin. Added some elements: cite, details, dfn, figure, kbd rjt
Line 3: Line 3:
  
 ===== Cool HTML Elements ===== ===== Cool HTML Elements =====
-  ; term +  ; ''<cite>'' 
-  : def+  : For titles of works. 
 +  ; ''<details>'' 
 +  : For sections of stuff you can show/hide. Added a ''<summary>'' to set the title. Use ''<details open>'' to make it start unfolded. 
 +  ; ''<dfn>'' 
 +  : For specifying first instance of a term. Use with ''<abbr>'' or ''<acronym>''
 +  ; ''<figure>'' 
 +  : For images associated stuffs. Put a regular 'ol ''<img>'' in there and use ''<figcaption>'' for a caption. 
 +  ; ''<kbd>'' 
 +  : For keyboard / button instructions.