講者:子右
時間:2020/10/15
請求
傳送資料
browser
server
解讀
包含HTML
<!DOCTYPE html>
<html><!--HTML的根元素(root element)-->
<head><!--放置不會直接顯示於頁面中的東西-->
<meta charset="utf-8"><!--設定網頁編碼,UTF-8 是萬國碼-->
<title>網頁標題</title><!--網頁標題-->
</head>
<body><!--放置要顯示於頁面中的東西-->
<!--此空間放置內容-->
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<!-- 我是註解 -->
<!-- 我不會顯示 -->
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<h2>An Unordered HTML List 無序/符號清單</h2>
<ul>
<li>2</li>
<li>0</li>
<li>2</li>
<li>0</li>
</ul>
<h2>An Ordered HTML List 有序/編號清單</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<strong>我是粗體</strong>
<em>我是斜體</em>
<u>我是底線</u>
<b>我也是粗體</b>
<i>我也是斜體</i>
<p>我<br>是<br>換<br>行</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<a href="https://www.google.com.tw" target="_blank">
<img src="https://www.google.com.tw/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">
</a>
</body>
</html>
ID
Class
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<h3 id="headline">以下是周杰倫的音樂事業事跡:</h3>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>示範網頁</title>
</head>
<body>
<p class="project-tile">輔仁大學圖書資訊學系系網</p>
</body>
</html>
有標題
大頭貼
我是誰 : 名字 系級 學校
愛吃的食物 (編號)
興趣 (無序)
SIRLA官網的連結
網址 : https://sirla-fjulis.github.io/