head 方便瀏覽器知道你的頭 哈
main 方便瀏覽器知道你的主要內容
p 段落,文字。
a 提供點下後的超連結
img 圖片
List
ul 不排序list 通常用法
ol 排序list ->頭會帶數字 ex: 1. 2. 3.
input 輸入 :
type = 指定類型 ex text radio checkbox
placeholder = hint
ex:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
<label><input type="checkbox" name="personality" checked> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Energetic</label><br>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</main>
</body>
</html>
文章標籤
全站熱搜
