day_1

//準備重新學習前端了,希望可以系統看一下。依據《百度前端學院》。依舊只記錄自己不太瞭解的細節,會的就不記了
1a title=""鏈接時會提示   target="_blank" 新的一頁打開
2、布爾屬性  <input type="text" disabled="disabled">
3、分析HTML文檔
   <!DOCTYPE html>: 聲明文檔類型
4、實體引用: 在HTML中包含特殊字符
   <  &lt;
   >  &gt;
   "  &quot;
   '  &apos;
   &  &amp;
   eg<p>&quot;學一些實體引用&quot;“單位我覺得還行 1&gt;2</p>
      <p>In HTML, you define a paragraph using the <p> element.</p>
5head
   元數據:<meta>//搜索引擎
   <meta charset="utf-8">
   name contant
   EG:<meta name="author" content="Chris Mills">
<meta name="description" content="The MDN Learning Area aims to provide
complete beginners to the Web with all they need to know to get
started with developing web sites and applications.">
   圖標:
   <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
6lang  ='en-US'<p>Japanese example: <span lang="jp">ご飯が熱い。</span>.</p>
7、斜體字、粗體字、下劃線...
<b>, <i>, <u>
8、省略
<p>dadwdnvi<abbr title="dadwdncsiacnwinvio">111</abbr>dadw</p>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章