On Github chhu0830 / chhu0830.github.io
<!DOCTYPE HTML> <html> <head> <title> ... </title> </head> <body> ... </body> </html>
<tagname> content </tagname>
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>DEMO</title> </head> <body> <h1> CS-Camp </h1> <a href="http://camp.cs.nctu.edu.tw/">交大資工逐夢營</a> <div> This is a block. </div> <p> This is a paragraph. </p> <img src="CS-Camp.png" alt="CS-Camp" style="height:100px;"> There is a <br> line break. <!-- CS-Camp is the best. --> </body> </html>
Selector { Property: value; Property: value; Property: value; ... }
記得加分號,因為很重要,所以要說三遍
Find HTML elements
p { ...; }The id Selector
#id { ...; }The class Selector
.class { ...; }