Day 1 : make a deal

看到 Jen Dewalt 自學, 180天熱情和努力地, 每天做一個小作品
有感而發, 記錄一下:

---

 github

public/make_a_deal.html

--

html 基本

<html>

<head> 

這部分的訊息並不會顯示

<title> 會顯示在 browser 上方網頁名稱 </title>

<meta> 通常提供給搜尋引擎 </meta>

</head>

<body>

<img src="..."> 以... 圖片顯示

<a href="xxx.html"> ... </a> 點選後跳去顯示 xxx.html

</body>

</html>

--

CSS: Cascading Style Sheets

引用 css : 寫在 head 區

<link rel="stylesheet" href="css/make_a_deal.css">

使用

<div id="title">Wanna Make a Deal?</div>


定義:

#title {
font-size: 50px;
margin-bottom: 30px;
}

---



--
 

留言

熱門文章