Skip to content

Commit dc21b29

Browse files
authored
Merge pull request 4GeeksAcademy#27 from Nyarime/main
README.md for Chinese
2 parents 766a092 + 53df044 commit dc21b29

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.cn.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# ![4Geeks Logo](http://assets.breatheco.de/apis/img/images.php?blob&random&cat=icon&tags=4geeks,16) HTML Hello
2+
3+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io#https://github.com/4GeeksAcademy/html-hello.git)
4+
5+
为使用 [gitpod.io](gitpod.io) 代码编辑器 4Geeks Academy 学生提供的最基础的样板。
6+
7+
[![How to open html/css preview of my project in gitpod](https://github.com/4GeeksAcademy/Templates-Boilerplates/blob/master/assets/hello-html-intro.png?raw=true)](https://youtu.be/dfbDCMu_p-0)
8+
9+
## 接下来怎么做?
10+
11+
创建一个具有 [基本 HTML 页面结构](http://content.breatheco.de/lesson/what-is-html-learn-html#page-structure)`index.html` 文件并通过使用以下命令,实时预览 Web 服务器提供的 HTML 页面:
12+
13+
```sh
14+
$ pip3 install flask && python3 server.py
15+
```
16+
17+
- 您可以根据需要创建任意数量的 HTML 文件
18+
- 您还可以使用放置在 `<head></head>` 标签之间的 `<link>` 标签创建 CSS 文件并将它们导入您的网站,如下所示:
19+
20+
```html
21+
<head>
22+
...
23+
<link rel="stylesheet" type="text/css" href="styles.css">
24+
...
25+
</head>
26+
```

0 commit comments

Comments
 (0)