dl 的意義是 Definition List,中文是「定義清單」
dt 的意義是 Definition Term,中文是「定義項目」。
dd 的意義是 Definition Description,中文是「定義描述」。
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
效果如下
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<em>Emphasized text</em><br><strong>Strong text</strong><br><dfn>Definition term</dfn><br><code>A piece of computer code</code><br><samp>Sample output from a computer program</samp><br><kbd>Keyboard input</kbd><br><var>Variable</var><br><q>test</q><br><address>address<address><br>
Emphasized text
Strong text
Definition term
A piece of computer code
Sample output from a computer program
Keyboard input
Variable
test
address
可以維持輸入的格式<pre></pre>Text in a pre elementis displayed in a fixed-widthfont, and it preservesboth spaces andline breaks
Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks
<abbr title=“ilake”> amy </abbr> ->滑鼠指標移過去時會顯示ilake
# ll –a 查看有沒有.ssh
# mkdir .ssh 建立.ssh
#cd .ssh 進入.ssh
#ssh-keygen -t rsa 執行創建密鑰命令
#scp/home/ap/ilake/.ssh/id_rsa.pub ilake@28.192.141.129:/ilake/.ssh
#ssh-keygen
# cd /.ssh 進入到.ssh目錄 .ssh權限必须是755或者700
# cp id_rsa.pub authorized_keys 第一次添加時將公鑰重命名為authorized_keys
# chmod 644 authorized_keys 公鑰文件的權限必须是644
# cat /tmp/id_rsa.pub >> authorized_keys
# sftp ilake@ip 成功的話就可以直接登入
若只輸入sftp ip 則扔然要有密碼