or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
網頁設計社 課前預習 DAY4 (110上)
講師:
網頁前端基本介紹
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →學習:W3C School
練習:html cafe
HTML是甚麼?
超文本標記語言 (Hypertext Markup Language, HTML)
使用標籤來排序要顯示的內容
<標籤> 為開頭
</標籤> 為結尾
HTML 常見標籤
HTML 常見標籤 字體修改
abcCSS是甚麼?
階層式樣式表(Cascading Style Sheets,CSS)
是用來輔助HTML加上不同的樣式
CSS使用方法
<style>
標籤裡面的CSSCSS常見標籤
顏色進階介紹
從RGB三原色或是十六進位或是其他方法來調整顏色
三原色用法: (0~255,0~255,0~255)
十六進位的用法: #000000 (原理和RGB一樣)
JavaScript是甚麼?
JavaScript是一種進階的、直譯的程式語言
在HTML中使用JavaScript
JavaScript在前端(FrontEnd)的功用
JavaScript的其他功用
– Node.js的出現讓JS可以在瀏覽器以外的地方運行
目前主流三大前端框架
使用框架原因能夠快速開發
Node.js的出現
最後補充
前面你們聽到的前端、後端、全端是甚麼?
FrontEnd(前端)一個網頁畫面呈現的地方就是你在看YouTube時所看到的頁面就叫前端
BackEnd(後端)一個網頁處理資料的地方就是你看YouTube時你影片來源的地方,一般人可能會說伺服器(Server)
FullStack(全端)就是FrontEnd+BackEnd(前端加後端)
[補充]