如何使用HTML5创建在线精美简历

系统 1872 0

译自: http://net.tutsplus.com/tutorials/html-css-techniques/how-to-create-an-html5-microdata-powered-resume/

译者:蒋宇捷(转载请标明出处 http://blog.csdn.net/hfahe

Janet Wagner于2011 年9月27日

教程细节
概要:HTML5的微数据API
难度:初级/中级
估计完成时间: 60-90分钟
将创建的最终产品

2009年5月,谷歌推出了富摘要信息,在Google的搜索结果显示一个小块,使用户更容易决定哪些网页是他们搜索相关的信息。在2011年6月,谷歌宣布建立Schema.org,从谷歌、Bing和雅虎创建结构化数据的标记模式。
本教程演示了如何采用Schema.org的微数据创建一个在线的简历。本教程还包括关于如何使用作者署名标记!(译者注:Schema.org相关信息可参见http://www.rwwchina.com/2011/06/is_schemaorg_really_a_google_land_grab.html)
________________________________________
附加内容包括
本教程示例是一个页面的网站模板,你可以自由的作为你的网上简历使用。作为多余的奖励,多种颜色版本都包含在源文件的zip包中:深绿色,浅绿色,深蓝色和浅蓝色。
请注意,这并不是网页设计或CSS教程,所以只会提到HTML5和Schema.org的微数据标记。
现在,让我们开始吧!
________________________________________
第1步:CSS
创建一个名为“style.css”的CSS样式表,包括下面的代码。不要担心,这相当简单,并且理解它不是本教程的必须。
  1. /*DefaultStyles
  2. ---------------------------------------------------*/
  3. body{
  4. margin : 0px ;
  5. padding : 0px ;
  6. background : url ( "../images/bg_dark_green.png" );
  7. background-color :inherit;
  8. font-size : 16px ;
  9. font-family : "TrebuchetMS" , Helvetica , sans-serif ;
  10. color : #000 ;
  11. }
  12. a:link{
  13. text-decoration : underline ;
  14. color : #000 ;
  15. font-weight : bold ;
  16. }
  17. a:visited{
  18. text-decoration : underline ;
  19. color : #000 ;
  20. font-weight : bold ;
  21. }
  22. a:hover{
  23. text-decoration : underline ;
  24. color : #669933 ;
  25. font-weight : bold ;
  26. }
  27. a:active{
  28. text-decoration : underline ;
  29. color : #000 ;
  30. font-weight : bold ;
  31. }
  32. #wrappe r{
  33. width : 965px ;
  34. margin : 0 auto ;
  35. }
  36. #conten t{
  37. background-color : #eee ;
  38. width : 960px ;
  39. text-align : left ;
  40. overflow : auto ;
  41. position : relative ;
  42. margin : 25px 0px 25px 0px ;
  43. border : #fff solid 2px ;
  44. }
  45. .clear{
  46. float : none ;
  47. clear : both ;
  48. margin : 20px 0px 20px 0px ;
  49. }
  50. /*Header
  51. ---------------------------------------------------*/
  52. #contac t-details.header_ 1 {
  53. float : left ;
  54. width : 350px ;
  55. text-align : center ;
  56. margin : 40px 0px 0px 20px ;
  57. }
  58. #contac t-details.header_ 1 img{
  59. border : #fff solid 4px ;
  60. background : url ( "../images/bg_img_dark_green.png" );
  61. padding : 16px ;
  62. margin : 10px 0px 0px 0px ;
  63. }
  64. #contac t-details.header_ 2 {
  65. float : left ;
  66. width : 570px ;
  67. margin : 40px 0px 0px 10px ;
  68. }
  69. #contac t-details.header_ 2 a{
  70. font-weight : normal ;
  71. }
  72. #contac t-detailsh 1 {
  73. margin : 0px 0px 0px 20px ;
  74. font-size : 52px ;
  75. font-weight : bold ;
  76. }
  77. #contac t-detailsh 3 {
  78. margin : 0px 0px 32px 20px ;
  79. font-size : 30px ;
  80. font-weight : bold ;
  81. font-style : italic ;
  82. }
  83. #contac t-detailsul.info_ 1 {
  84. list-style : none ;
  85. margin : 0px 0px 0px -12px ;
  86. font-size : 18px ;
  87. }
  88. #contac t-detailsul.info_ 2 {
  89. list-style : none ;
  90. margin : 0px 0px 15px -12px ;
  91. font-size : 18px ;
  92. }
  93. #contac t-detailsli.address{
  94. background : url ( "../images/home.png" ) no-repeat ;
  95. background-position : 0px 0px ;
  96. padding : 0px 0px 12px 40px ;
  97. }
  98. #contac t-detailsli.phone{
  99. background : url ( "../images/phone.png" ) no-repeat ;
  100. background-position : 0px 0px ;
  101. padding : 0px 0px 12px 40px ;
  102. }
  103. #contac t-detailsli.email{
  104. background : url ( "../images/mail.png" ) no-repeat ;
  105. background-position : 0px 0px ;
  106. padding : 0px 0px 12px 40px ;
  107. }
  108. #contac t-detailsli.site_url{
  109. background : url ( "../images/computer.png" ) no-repeat ;
  110. background-position : 0px 2px ;
  111. padding : 0px 0px 12px 40px ;
  112. }
  113. #contac t-detailsli.twitter{
  114. background : url ( "../images/twitter_sm.png" ) no-repeat ;
  115. background-position : 0px 0px ;
  116. padding : 0px 0px 12px 40px ;
  117. }
  118. /*MainContent
  119. ---------------------------------------------------*/
  120. h 2 . top {
  121. margin : 0px ;
  122. font-size : 22px ;
  123. font-weight : bold ;
  124. }
  125. h 2 {
  126. margin : 40px 0px 0px 0px ;
  127. font-size : 22px ;
  128. font-weight : bold ;
  129. }
  130. dl{
  131. margin : 0px 50px 0px 0px ;
  132. }
  133. dt{
  134. float : left ;
  135. width : 200px ;
  136. font-size : 20px ;
  137. font-weight : bold ;
  138. font-style : italic ;
  139. text-align : right ;
  140. }
  141. dd{
  142. width : 620px ;
  143. float : right ;
  144. margin-right : 20px ;
  145. }
  146. dl #contac t{
  147. margin : 0px ;
  148. }
  149. dt #contac t{
  150. margin : 0px ;
  151. }
  152. dd #contac t{
  153. margin : 0px ;
  154. }
  155. p.bus 1 {
  156. margin : 0px ;
  157. font-weight : bold ;
  158. color : #669933 ;
  159. }
  160. p.edu-info{
  161. margin : 10px 0px 0px 0px ;
  162. font-weight : bold ;
  163. color : #669933 ;
  164. }
  165. p.edu-infoa{
  166. color : #000 ;
  167. }
  168. p.edu-infoa:hover{
  169. color : #669933 ;
  170. }
  171. p.time{
  172. margin : 0px ;
  173. }
  174. p.summary{
  175. margin : 10px 0px 0px 0px ;
  176. }
  177. #skills ul.list 1 {
  178. float : left ;
  179. list-style : none ;
  180. margin : 0px 0px 0px -40px ;
  181. width : 220px ;
  182. }
  183. #skills ul.list 2 {
  184. float : left ;
  185. list-style : none ;
  186. margin : 0px 0px 0px 0px ;
  187. width : 220px ;
  188. }
  189. #skills li{
  190. background : url ( "../images/bullet_green.png" ) no-repeat ;
  191. background-position : 0px 2px ;
  192. padding : 0px 0px 0px 25px ;
  193. }
  194. abbr{
  195. border-width : 0px ;
  196. }
  197. /*Footer
  198. ---------------------------------------------------*/
  199. #footer {
  200. margin : 60px 40px 0px 40px ;
  201. }
  202. #footer img{
  203. border : 0px ;
  204. }
  205. #footer .footer_content{
  206. width : 700px ;
  207. overflow : auto ;
  208. margin : auto ;
  209. border : #fff solid 2px ;
  210. background-color : #dcdcdc ;
  211. }
  212. #footer ul.icons_ 1 {
  213. float : left ;
  214. width : 525px ;
  215. margin : 15px 10px 10px 15px ;
  216. padding : 0px ;
  217. }
  218. #footer ul.icons_ 2 {
  219. float : right ;
  220. width : 100px ;
  221. margin : 10px 20px 10px 10px ;
  222. padding : 0px ;
  223. }
  224. #footer .icons_ 1 li, #footer .icons_ 2 li{
  225. margin : 0px 0px 0px 7px ;
  226. padding : 0px ;
  227. list-style-type : none ;
  228. display : inline ;
  229. }
  230. #footer a{
  231. color : #000 ;
  232. }
  233. #footer a:hover{
  234. color : #669933 ;
  235. }
  236. #footer .credits{
  237. float : none ;
  238. clear : both ;
  239. margin : 10px 0px 20px 0px ;
  240. font-size : 12px ;
  241. text-align : center ;
  242. }
  243. #footer .creditsa{
  244. font-weight : normal ;
  245. }
________________________________________
第2步:页面
下一步,我们需要一个HTML文件。下面是一个我们都可能熟悉的基本布局。
  1. <!DOCTYPEhtml >
  2. < html >
  3. < head >
  4. < meta charset = UTF -8" >
  5. < meta charset = "utf-8" >
  6. < title > OnlineResumeofYourName </ title >
  7. <!--Meta-->
  8. < meta name = "description" content = "Afewlinesaboutyourself" >
  9. < meta name = "keywords" content = "web,developer,designer,resume" />
  10. < meta name = "author" content = "YourName" >
  11. <!--CSSStylesheet-->
  12. < link rel = "stylesheet" type = "text/css" href = "css/style.css" />
  13. <!--[ifltIE9] >
  14. < script src = "http://html5shiv.googlecode.com/svn/trunk/html5.js" > </ script >
  15. <![endif]-- >
  16. </ head >
  17. < body >
  18. <!--BeginWrapper-->
  19. < div id = "wrapper" >
  20. <!--BeginContentArea-->
  21. < div id = "content" >
  22. <!--BeginHeader-->
  23. < header >
  24. <!--BeginContactSection-->
  25. < section id = "contact-details" >
  26. <!--BeginProfileImageSection-->
  27. < div class = "header_1" >
  28. < img src = "images/profile.jpg" width = "250" height = "250" alt = "YourName" />
  29. </ div >
  30. <!--EndProfileImageSection-->
  31. <!--BeginProfileInformationSection-->
  32. < div class = "header_2" >
  33. < h1 > < span > YourName </ span > </ h1 >
  34. < h3 > WebDeveloper/Designer </ h3 >
  35. < ul class = "info_1" >
  36. < li class = "address" > 555StreetAddress,Toledo,Ohio,43606U.S.A. </ li >
  37. </ ul >
  38. < ul class = "info_2" >
  39. < li class = "phone" > (000)000-0000 </ li >
  40. < li class = "email" > < a href = "mailto:your-email@gmail.com" > your-email@gmail.com </ a > </ li >
  41. < li class = "site_url" > < a href = "http://www.webcodepro.net/about.php" title = "www.your-website.com" > www.your-website.com </ a > </ li >
  42. < li class = "twitter" > < a href = "http://twitter.com/twitter-screen-name" title = "FollowMeonTwitter" > @twitter-screen-name </ a > </ li >
  43. </ ul >
  44. </ div >
  45. <!--EndProfileInformationSection-->
  46. </ section >
  47. <!--EndContactSection-->
  48. </ header >
  49. <!--EndHeader-->
  50. < div class = "clear" > </ div >
  51. <!--BeginProfileSection-->
  52. < dl >
  53. < dt > Profile: </ dt >
  54. < dd >
  55. < section class = "summary" >
  56. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.
  57. </ section >
  58. </ dd >
  59. </ dl >
  60. <!--EndProfileSection-->
  61. < div class = "clear" > </ div >
  62. <!--BeginSkillsSection-->
  63. < dl >
  64. < dt > Skills: </ dt >
  65. < dd >
  66. < section id = "skills" >
  67. < ul class = "list1" >
  68. < li > XHTML </ li >
  69. < li > HTML5 </ li >
  70. < li > PHP </ li >
  71. < li > JavaScript </ li >
  72. < li > Magento </ li >
  73. < li > WordPress </ li >
  74. </ ul >
  75. < ul class = "list2" >
  76. < li > HTML </ li >
  77. < li > CSS </ li >
  78. < li > MySQL </ li >
  79. < li > jQuery </ li >
  80. < li > CMSMadeSimple </ li >
  81. < li > Photoshop </ li >
  82. </ ul >
  83. </ section >
  84. </ dd >
  85. </ dl >
  86. <!--EndSkillsSection-->
  87. < div class = "clear" > </ div >
  88. <!--BeginExperienceSection-->
  89. < dl >
  90. < dt > Experience: </ dt >
  91. < dd >
  92. < section id = "experience" >
  93. <!--Position#1-->
  94. < h2 class = "top" > WebDeveloper/Designer </ h2 >
  95. < p class = "bus1" > CompanyName1 </ p >
  96. < p class = "time" > February2009-Present </ p >
  97. < p >
  98. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  99. </ p >
  100. <!--Position#2-->
  101. < h2 > WebDeveloper/Programmer </ h2 >
  102. < p class = "bus1" > CompanyName2 </ p >
  103. < p class = "time" > November2007-February2009 </ p >
  104. < p >
  105. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  106. </ p >
  107. <!--Position#3-->
  108. < h2 > WebDeveloper/Programmer </ h2 >
  109. < p class = "bus1" > CompanyName3 </ p >
  110. < p class = "time" > March2006-November2007 </ p >
  111. < p >
  112. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  113. </ p >
  114. </ section >
  115. </ dd >
  116. </ dl >
  117. <!--EndExperienceSection-->
  118. < div class = "clear" > </ div >
  119. <!--BeginPublicationsSection-->
  120. < dl >
  121. < dt > Publications: </ dt >
  122. < dd >
  123. < section id = "publications" >
  124. < a href = "http://net.tutsplus.com/tutorials/php/how-to-create-an-advanced-twitter-widget/" target = "_blank" title = "HowtoCreateanAdvancedTwitterWidget" > "HowtoCreateanAdvancedTwitterWidget" </ a > , < a href = "http://net.tutsplus.com/" target = "_blank" title = "Nettuts+" > Nettuts+ </ a > ,8/25/11
  125. </ section >
  126. </ dd >
  127. </ dl >
  128. <!--EndPublicationsSection-->
  129. < div class = "clear" > </ div >
  130. <!--BeginEducationSection-->
  131. < dl >
  132. < dt > Education: </ dt >
  133. < dd >
  134. < section id = "education" >
  135. < p class = "bus1" > UniversityofToledo </ p >
  136. 2801BancroftStreet
  137. < br />
  138. Toledo,Ohio,43606U.S.A.
  139. < p class = "summary" > WebDesign </ p >
  140. < p class = "time" > 2003-2005 </ p >
  141. < p class = "edu-info" >
  142. < a href = "http://www.utoledo.edu/" target = "_blank" title = "UniversityofToledo" > www.utoledo.edu </ a >
  143. </ p >
  144. </ section >
  145. </ dd >
  146. </ dl >
  147. <!--EndEducationSection-->
  148. < div class = "clear" > </ div >
  149. <!--BeginFooter-->
  150. < footer id = "footer" >
  151. <!--BeginFooterContent-->
  152. < div class = "footer_content" >
  153. <!--BeginSchemaPerson-->
  154. < ul class = "icons_1" >
  155. < li > < a href = "https://profiles.google.com/jwagner719" title = "GoogleProfile" > < img src = "http://www.google.com/images/icons/ui/gprofile_button-32.png" width = "32" height = "32" alt = "GoogleProfile" > </ a > </ li >
  156. < li > < a href = "http://dribbble.com/" title = "Dribbble" > < img src = "images/dribbble.png" width = "32" height = "32" alt = "Dribbble" /> </ a > </ li >
  157. < li > < a href = "http://www.linkedin.com/" title = "LinkedIn" > < img src = "images/linkedin.png" width = "32" height = "32" alt = "LinkedIn" /> </ a > </ li >
  158. < li > < a href = "http://www.facebook.com/" title = "Facebook" > < img src = "images/facebook.png" width = "32" height = "32" alt = "Facebook" /> </ a > </ li >
  159. < li > < a href = "http://www.flickr.com/" title = "Flickr" > < img src = "images/flickr.png" width = "32" height = "32" alt = "Flickr" /> </ a > </ li >
  160. < li > < a href = "http://twitter.com/" title = "FollowMeonTwitter!" > < img src = "images/twitter.png" width = "32" height = "32" alt = "FollowMeonTwitter!" /> </ a > </ li >
  161. </ ul >
  162. < ul class = "icons_2" >
  163. < li > < a href = "resume.pdf" title = "DownloadResumePDF" > < img src = "images/download.png" width = "48" height = "48" alt = "DownloadResumePDF" /> </ a > </ li >
  164. </ ul >
  165. <!--EndSchemaPerson-->
  166. </ div >
  167. <!--EndFooterContent-->
  168. < div class = "credits" >
  169. SocialIconsby < a href = "http://paulrobertlloyd.com/2009/06/social_media_icons" target = "_blank" title = "PaulRobertLloyd" > PaulRobertLloyd </ a > ,Profile&DownloadIconsby < a href = "http://dryicons.com/" target = "_blank" title = "DryIcons" > DryIcons </ a > ,PhoneIconby < a href = "http://www.comfi.com/telecom-icons/" target = "_blank" title = "ComFiTelecom" > ComFiTelecom </ a > ,ProfileImageUserSymbolby < a href = "http://thenounproject.com/" target = "_blank" title = "TheNounProject" > TheNounProject </ a > .
  170. < br />
  171. AllusedunderaCreativeCommonsAttribution-ShareAlikelicense: < a href = "http://creativecommons.org/licenses/by-sa/3.0/" target = "_blank" title = "CreativeCommonsAttribution-ShareAlikelicense" > http://creativecommons.org/licenses/by-sa/3.0/ </ a >
  172. </ div >
  173. </ footer >
  174. <!--EndFooter-->
  175. </ div >
  176. <!--EndContent-->
  177. </ div >
  178. <!--EndWrapper-->
  179. </ body >
  180. </ html >
________________________________________
关于页面的几个说明
HTML5 Shiv
由于Schema.org微数据是基于HTML5微数据的规范,HTML5的标记被用来创建一页简历的网站模板。不幸的是,旧的网页浏览器如IE7和IE8不承认某些HTML5元素。在这些旧的浏览器中,使用HTML5编写的页面将无法正确呈现。
当在IE8里点击图片查看全图时,下面是在线简历示例的截图:
为了解决这些旧IE浏览器版本的问题,在标签间添加了如下的代码(在CSS样式表下面):
  1. <!--[ifltIE9] >
  2. < script src = "http://html5shiv.googlecode.com/svn/trunk/html5.js" > </ script >
  3. <![endif]-- >
此代码是一个HTML5 JavaScript shim,用于让IE识别和渲染HTML5元素。
注:在IE9和其他现代浏览器中不需要使用HTML5 JavaScript shim。
定义列表
我们在标记中使用<dd></dd>而不是无序列表来定义列表。这是因为当考虑到每个项目都有一个标题和描述时更有意义。
Section vs Article
关于HTML5的Section和Article元素的使用似乎有一些混乱。我们在页面中使用Section元素,因为没有简历的段落是独立的内容。HTML5的Article元素被用在独立的内容上,例如博客文章或新闻报道。本文很好的解释了HTML5 Section和Acricle元素之间的差异 。
________________________________________
第三步:添加Schema.org微数据-Person和PostalAddress
我们首先要添加的模式类型是Person和PostalAddress。
Itemscope元素和ItemType属性
我们将一个itemscope元素添加到<div></div>标签上。
  1. < div itemscope itemtype = "http://schema.org/Person" >
  2. ContentthatcontainsinformationaboutaPerson
  3. </ div >
Itemscope元素和Person模式的ItemType 属性都将被放在简历页面联系方式和社会化媒体链接的部分,像如下所示:
  1. <!--BeginContactSection-->
  2. < section id = "contact-details" >
  3. < div itemscope itemtype = "http://schema.org/Person" >
  4. RestofCodeBlockHere
  5. </ div >
  6. </ section >
  7. <!--EndContactSection-->
  1. <!--BeginSocialMediaandDownloadLinks-->
  2. < div itemscope itemtype = "http://schema.org/Person" >
  3. RestofCodeBlockHere
  4. </ div >
  5. <!--EndSocialMediaandDownloadLinks-->
itemscope元素和PostalAddress模式的ItemType属性被嵌入Person模式中,包含地址信息放在无序的列表<ul></ul>中:
  1. <!--BeginPostalAddressSchema-->
  2. < div itemprop = "address" itemscope itemtype = "http://schema.org/PostalAddress" >
  3. < ul class = "info_1" >
  4. < li class = "address" > < span itemprop = "streetAddress" > 555StreetAddress </ span > , < span itemprop = "addressLocality" < Toledo </ span > , < span itemprop = "addressRegion" > Ohio </ span > , < span itemprop = "postalCode" < 43606 </ span > < span itemprop = "addressCountry" > U.S.A. </ span > </ li >
  5. </ ul >
  6. </ div >
  7. <!--EndPostalAddressSchema-->
Itemprop属性
需要把Itemprop属性添加到适当的span标记中,以便对搜索引擎提供我们网页的附加信息。下面是我们将使用这些模式的属性 :
Person模式
itemprop="image"
itemprop="name"
itemprop="jobTitle"
itemprop="telephone"
itemprop="email"
itemprop="url"
PostalAddress架构
itemprop="streetAddress"
itemprop="addressLocality"
itemprop="addressRegion"
itemprop="postalCode"
itemprop="addressCountry"
联系人和社会化媒体链接段落的最终页面
  1. <!--BeginContactSection-->
  2. < section id = "contact-details" >
  3. < div itemscope itemtype = "http://schema.org/Person" >
  4. <!--BeginProfileImageSection-->
  5. < div class = "header_1" >
  6. < img src = "images/profile.jpg" itemprop = "image" width = "250" height = "250" alt = "YourName" />
  7. </ div >
  8. <!--EndProfileImageSection-->
  9. <!--BeginProfileInformationSection-->
  10. < div class = "header_2" >
  11. < h1 > < span itemprop = "name" > YourName </ span > </ h1 >
  12. < h3 > < span itemprop = "jobTitle" > WebDeveloper/Designer </ span > </ h3 >
  13. <!--BeginPostalAddressSchema-->
  14. < div itemprop = "address" itemscope itemtype = "http://schema.org/PostalAddress" >
  15. < ul class = "info_1" >
  16. < li class = "address" > < span itemprop = "streetAddress" > 555StreetAddress </ span > , < span itemprop = "addressLocality" < Toledo </ span > , < span itemprop = "addressRegion" > Ohio </ span > , < span itemprop = "postalCode" < 43606 </ span > < span itemprop = "addressCountry" > U.S.A. </ span > </ li >
  17. </ ul >
  18. </ div >
  19. <!--EndPostalAddressSchema-->
  20. < ul class = "info_2" >
  21. < li class = "phone" > < span itemprop = "telephone" > (000)000-0000 </ span > </ li >
  22. < li class = "email" > < a href = "mailto:your-email@gmail.com" itemprop = "email" > your-email@gmail.com </ a > </ li >
  23. < li class = "site_url" > < a rel = "me" itemprop = "url" href = "http://www.webcodepro.net/about.php" title = "www.your-website.com" > www.your-website.com </ a > </ li >
  24. < li class = "twitter" > < a rel = "me" itemprop = "url" href = "http://twitter.com/twitter-screen-name" title = "FollowMeonTwitter" > @twitter-screen-name </ a > </ li >
  25. </ ul >
  26. </ div >
  27. <!--EndProfileInformationSection-->
  28. </ div >
  29. </ section >
  30. <!--EndContactSection-->
  1. <!--BeginSocialMediaandDownloadLinks-->
  2. < div itemscope itemtype = "http://schema.org/Person" >
  3. < ul class = "icons_1" >
  4. < li > < a rel = "author" itemprop = "url" href = "https://profiles.google.com/jwagner719" title = "GoogleProfile" > < img src = "http://www.google.com/images/icons/ui/gprofile_button-32.png" width = "32" height = "32" alt = "GoogleProfile" > </ a > </ li >
  5. < li > < a rel = "me" itemprop = "url" href = "http://dribbble.com/" title = "Dribbble" > < img src = "images/dribbble.png" width = "32" height = "32" alt = "Dribbble" /> </ a > </ li >
  6. < li > < a rel = "me" itemprop = "url" href = "http://www.linkedin.com/" title = "LinkedIn" > < img src = "images/linkedin.png" width = "32" height = "32" alt = "LinkedIn" /> </ a > </ li >
  7. < li > < a rel = "me" itemprop = "url" href = "http://www.facebook.com/" title = "Facebook" > < img src = "images/facebook.png" width = "32" height = "32" alt = "Facebook" /> </ a > </ li >
  8. < li > < a rel = "me" itemprop = "url" href = "http://www.flickr.com/" title = "Flickr" > < img src = "images/flickr.png" width = "32" height = "32" alt = "Flickr" /> </ a > </ li >
  9. < li > < a rel = "me" itemprop = "url" href = "http://twitter.com/" title = "FollowMeonTwitter!" > < img src = "images/twitter.png" width = "32" height = "32" alt = "FollowMeonTwitter!" /> </ a > </ li >
  10. </ ul >
  11. < ul class = "icons_2" >
  12. < li > < a href = "resume.pdf" title = "DownloadResumePDF" > < img src = "images/download.png" width = "48" height = "48" alt = "DownloadResumePDF" /> </ a > </ li >
  13. </ ul >
  14. </ div >
  15. <!--EndSocialMediaandDownloadLinks-->
________________________________________
第4步:添加Schema.org微数据-ITEMLIST列表 接下来我们要添加的标记模式是 ITEMLIST。
Itemscope元素和ItemType属性
ITEMLIST模式的itemscope元素和ItemType属性将被像如下这样放置在技能段落:
  1. <!--BeginSkillsSection-->
  2. < div itemscope itemtype = "http://schema.org/ItemList" >
  3. RestofCodeBlockHere
  4. </ div >
  5. <!--EndSkillsSection-->
Itemprop属性
在适当的<span></span>标记中添加“ itemprop “属性。下面是我们将在这个模式中使用的属性:
ITEMLIST模式
itemprop =“itemListElement”
技能段落的最终页面
  1. <!--BeginSkillsSection-->
  2. < div itemscope itemtype = "http://schema.org/ItemList" >
  3. < dl >
  4. < dt itemprop = "name" > Skills: </ dt >
  5. < dd >
  6. < section id = "skills" >
  7. < ul class = "list1" >
  8. < li itemprop = "itemListElement" > XHTML </ li >
  9. < li itemprop = "itemListElement" > HTML5 </ li >
  10. < li itemprop = "itemListElement" > PHP </ li >
  11. < li itemprop = "itemListElement" > JavaScript </ li >
  12. < li itemprop = "itemListElement" > Magento </ li >
  13. < li itemprop = "itemListElement" > WordPress </ li >
  14. </ ul >
  15. < ul class = "list2" >
  16. < li itemprop = "itemListElement" > HTML </ li >
  17. < li itemprop = "itemListElement" > CSS </ li >
  18. < li itemprop = "itemListElement" > MySQL </ li >
  19. < li itemprop = "itemListElement" > jQuery </ li >
  20. < li itemprop = "itemListElement" > CMSMadeSimple </ li >
  21. < li itemprop = "itemListElement" > Photoshop </ li >
  22. </ ul >
  23. </ section >
  24. </ dd >
  25. </ dl >
  26. </ div >
  27. <!--EndSkillsSection-->
________________________________________
步骤5:添加Schema.org微数据-组织 下一步,我们将添加Organization模式。
Itemscope元素和ItemType属性
Organization模式的itemscope元素和ItemType属性将会被放置在“Experience”段落里所列出的 “Position”元素里,如下所示:
  1. <!--Position#1-->
  2. < div itemscope itemtype = "http://schema.org/Organization" >
  3. RestofCodeBlockHere
  4. </ div >
  5. <!--Position#2-->
  6. < div itemscope itemtype = "http://schema.org/Organization" >
  7. RestofCodeBlockHere
  8. </ div >
  9. <!--Position#3-->
  10. < div itemscope itemtype = "http://schema.org/Organization" >
  11. RestofCodeBlockHere
  12. </ div >
Itemprop属性
在适当的<span></span>标记中添加“ itemprop “属性。下面是我们将在这个模式中使用的属性:
Organization模式
itemprop="jobTitle"
itemprop="name"
itemprop="description"
工作经历段落的最终页面
  1. < section id = "experience" >
  2. <!--Position#1-->
  3. < div itemscope itemtype = "http://schema.org/Organization" >
  4. < h2 class = "top" > < span itemprop = "jobTitle" > WebDeveloper/Designer </ span > </ h2 >
  5. < p class = "bus1" > < span itemprop = "name" > CompanyName1 </ span > </ p >
  6. < p class = "time" > February2009-Present </ p >
  7. < p itemprop = "description" >
  8. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  9. </ p >
  10. </ div >
  11. <!--Position#2-->
  12. < div itemscope itemtype = "http://schema.org/Organization" >
  13. < h2 > < span itemprop = "jobTitle" > WebDeveloper/Programmer </ span > </ h2 >
  14. < p class = "bus1" > < span itemprop = "name" > CompanyName2 </ span > </ p >
  15. < p class = "time" > November2007-February2009 </ p >
  16. < p itemprop = "description" >
  17. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  18. </ p >
  19. </ div >
  20. <!--Position#3-->
  21. < div itemscope itemtype = "http://schema.org/Organization" >
  22. < h2 > < span itemprop = "jobTitle" > WebDeveloper/Programmer </ span > </ h2 >
  23. < p class = "bus1" > < span itemprop = "name" > CompanyName3 </ span > </ p >
  24. < p class = "time" > March2006-November2007 </ p >
  25. < p itemprop = "description" >
  26. Loremipsumdolorsitamet,consectetueradipiscingelit.Aeneancommodoligulaegetdolor.Aeneanmassa.Cumsociisnatoquepenatibusetmagnisdisparturientmontes,nasceturridiculusmus.Donecquamfelis,ultriciesnec,pellentesqueeu,pretiumquis,sem.Nullaconsequatmassaquisenim.Donecpedejusto,fringillavel,aliquetnec,vulputateeget,arcu.Inenimjusto,rhoncusut,imperdieta,venenatisvitae,justo.Nullamdictumfeliseupedemollispretium.
  27. </ p >
  28. </ div >
  29. </ section >
________________________________________
第六步:添加Schema.org微数据-Article 接下来,我们将把Article模式添加到页面。
Article的Itemscope元素和ItemType属性
Article模式的itemscope元素和ItemType属性将会被放置在“Publications”段落里所列出的 “Article”元素里,如下所示:
  1. < section id = "publications" >
  2. < div itemscope itemtype = "http://schema.org/Article" >
  3. RestofCodeBlockHere
  4. </ div >
  5. </ section >
Itemprop属性
在适当的<span></span>标记中添加“ itemprop “属性。下面是我们将在这个模式中使用的属性:
Article模式
itemprop="name"
itemprop="url"
Publications段落的最终页面
  1. < section id = "publications" >
  2. < div itemscope itemtype = "http://schema.org/Article" > < span itemprop = "name" >
  3. < a itemprop = "url" href = "http://net.tutsplus.com/tutorials/php/how-to-create-an-advanced-twitter-widget/" target = "_blank" title = "HowtoCreateanAdvancedTwitterWidget" > "HowtoCreateanAdvancedTwitterWidget" </ a > </ span > , < a href = "http://net.tutsplus.com/" target = "_blank" title = "Nettuts+" > Nettuts+ </ a > ,8/25/11
  4. </ div >
  5. </ section >
________________________________________
第7步:添加Schema.org微数据- EducationalOrganization和PostalAddress 下一步我们将把EducationalOrganization和PostalAddress模式添加到页面。
EducationalOrganization的Itemscope元素和ItemType属性

EducationalOrganization模式的itemscope元素和ItemType属性将会被放置在“Education”段落里,如下所示:
  1. < section id = "education" >
  2. < div itemscope itemtype = "http://schema.org/EducationalOrganization" >
  3. RestofCodeBlockHere
  4. </ div >
  5. </ section >
PostalAddress的Itemscope元素和ItemType属性
PostalAddress模式的itemscope元素和ItemType属性嵌套在EducationalOrganization模式里,将会被放置在“Education”段落包含地址信息的代码里,如下所示:
  1. < div itemprop = "address" itemscope itemtype = "http://schema.org/PostalAddress" >
  2. < span itemprop = "streetAddress" > 2801BancroftStreet </ span >
  3. < br />
  4. < span itemprop = "addressLocality" > Toledo </ span > , < span itemprop = "addressRegion" > Ohio </ span > , < span itemprop = "postalCode" > 43606 </ span > < span itemprop = "addressCountry" > U.S.A. </ span >
  5. </ div >
Itemprop属性
在适当的<span></span>标记中添加“ itemprop “属性。下面是我们将在这个模式中使用的属性:
EducationalOrganization模式
itemprop="name"
itemprop="url"
PostalAddress架构
itemprop="streetAddress"
itemprop="addressLocality"
itemprop="addressRegion"
itemprop="postalCode"
itemprop="addressCountry"
Education段落的最终页面
  1. < section id = "education" >
  2. < div itemscope itemtype = "http://schema.org/EducationalOrganization" >
  3. < p class = "bus1" > < span itemprop = "name" > UniversityofToledo </ span > </ p >
  4. < div itemprop = "address" itemscope itemtype = "http://schema.org/PostalAddress" >
  5. < span itemprop = "streetAddress" > 2801BancroftStreet </ span >
  6. < br />
  7. < span itemprop = "addressLocality" > Toledo </ span > , < span itemprop = "addressRegion" > Ohio </ span > , < span itemprop = "postalCode" > 43606 </ span > < span itemprop = "addressCountry" > U.S.A. </ span >
  8. </ div >
  9. < p class = "summary" > < span itemprop = "name" > WebDesign </ span > </ p >
  10. < p class = "time" > 2003-2005 </ p >
  11. < p class = "edu-info" >
  12. < a itemprop = "url" href = "http://www.utoledo.edu/" target = "_blank" title = "UniversityofToledo" > www.utoledo.edu </ a >
  13. </ p >
  14. </ div >
  15. </ section >
________________________________________
关于作者署名标记 在谷歌搜索结果中用图像显示作者署名标记(John Resig)。
在2011年6月,谷歌开始支持“作者署名标记”。通过使用例如REL =“作者” 和 rel =“我”的标记,搜索引擎可以识别网络上同一作者创建的内容。使用作者署名标记,有多个作者的网站可以将所有的文章分别链接到不同作者所属的特定页面。
多作者的网站需要使用rel=”author”标签来将独立的文章链接到合适的作者页面。如果作者页面包含使用了rel =“me”标签的一个链接到作者“Google个人资料”的链接,作者信息就可能会出现在搜索结果中。
为了帮助用户发现高质量的内容,谷歌正在试验把作者信息显示在搜索引擎结果里。此功能正在逐步推出,并可能成为搜索引擎结果和排名里一个非常重要的部分。
________________________________________
REL标签
一个网页简历网站模版的联系人和社会化媒体链接段落包含链接到一个主网站和社会化媒体页面的URL。“REL”属性需要被添加到这些段落的链接上,使得作者署名标记得以实现。作者署名标记允许搜索引擎来识别网络上同一作者所创建的内容。
有两个作者署名标记相关的特定标签:
rel="me"
rel="author"
简历网站页面的大多数链接指向关于同一个人的站点。所以我们添加了rel =“me”的标签。添加rel =“author”标签用于谷歌个人资料链接。根据你在何处发表的在线简历,您可能需要为“Google个人资料”链接使用rel =“me”标签来代替。
________________________________________
第8步:创建一个谷歌个人资料
如果你想开始在网上通过使用作者署名标记标识你的原文,你首先需要创建一个“Google个人资料”。
如果你已经有一个谷歌个人资料页,那么你应该更新您的个人资料(添加自己的照片,关于自己的信息,职业等)。
您还需要确保有一个+1的选项卡显示在页面上。
“如果您的Google个人资料中包括一个良好的、明确的内容,它将会有资格作为缩略图出现在搜索结果里”。
________________________________________
第9步:链接网页到你的Google个人资料
要为一个网页发布著作权,你需要做两件事:
将该网页链接到你的“Google个人资料”
更新“Google个人资料”链接到你网站的主页。
您可以使用文本链接将内容链接到你的Google个人资料:
  1. < a href = "[https://plus.google.com/your_profile]?rel=me" > Google+ </ a >
或使用“Google个人资料”按钮代码:
  1. < a rel = "me" href = "https://profiles.google.com/your_profile" >
  2. < img src = "http://www.google.com/images/icons/ui/gprofile_button-32.png" width = "32" height = "32" >
  3. </ a >
谷歌最近改变了作者署名标记的说明,这将会影响到rel = “me“和rel =”author“标签的使用。新的说明指明在文本和个人资料按钮链接上都要使用rel =“author“标签。然而,rel =“me”需要用来替代rel =“author”。如下面的截图所示。
“错误:作者个人资料页没有一个到Google个人资料的rel = me式链接“的截图
用John Resig为例:
在John Resig个人站点的关于页面,他使用rel =“me“链接到了Google个人资料。
在John Resig的Google+资料中,他链接到了个人站点的主页和关于页面。
________________________________________
第10步:完整的Google作者署名表(非常重要)
一旦您添加了Schema.org的微数据和完成步骤8和9,完善并提交谷歌作者署名申请表 。
直到谷歌作者署名表格完成并提交前,您的作者署名标记可能无法正常工作。
________________________________________
第11步:利用富摘要测试工具测试微数据标记
点击图片以查看完整的测试结果
您可以通过使用谷歌富摘要测试工具来检查你的网页,以确保谷歌在搜索结果里能正确解析,并显示你的微数据标记。此测试工具可以检查包括几个类型的结构化的数据标记,微观数据, 微格式 和 RDFa。
注:谷歌富摘要测试工具处于测试阶段,可能会有意料之外的结果。在结果的完整尺寸截图里包括一个错误:“警告:缺少必要的参数fn”。Schema.org不使用“fn”标签,但是微格式使用这个标签。这最有可能是一个故障。
________________________________________
全部完成!
您现在已经使用HTML5和Schema.org微数据创建了一个精美的在线简历,可以在搜索引擎结果里提供你的相关信息。此外,通过使用作者署名标记,你可以帮助搜索引擎识别网络上所有你自己的原创内容!
还有什么问题?在评论里告诉我们,并谢谢你的阅读!

如何使用HTML5创建在线精美简历


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论