|
2 | 2 |
|
3 | 3 | [](https://gitpod.io#https://github.com/4GeeksAcademy/html-hello.git)
|
4 | 4 |
|
5 |
| -The most basic boilerplate for any 4Geeks AcademyStudent using the[gitpod.io](gitpod.io) coding editor. |
| 5 | +The most basic boilerplate for any 4Geeks Academystudent using the[gitpod.io](gitpod.io) coding editor. |
6 | 6 |
|
7 | 7 | [](https://youtu.be/dfbDCMu_p-0)
|
8 | 8 |
|
9 | 9 | ##What to do next?
|
10 | 10 |
|
11 |
| -Createa`index.html` file with the[basic HTML structure](http://content.breatheco.de/lesson/what-is-html-learn-html#page-structure) and see it live by running web-server using the following command: |
| 11 | +Createan`index.html` file with the[basic HTML structure](http://content.breatheco.de/lesson/what-is-html-learn-html#page-structure) and see it live by running web-server using the following command: |
12 | 12 |
|
13 | 13 | ```sh
|
14 | 14 | $ pip3 install flask&& python3 server.py
|
15 | 15 | ```
|
16 | 16 |
|
17 |
| -- You can create as many HTML files you want |
18 |
| -- You can also create CSS files andyou canimport them onto your website using a`<link>` tag placed between the`<head></head>` tags, like this: |
| 17 | +- You can create as many HTML filesasyou want |
| 18 | +- You can also create CSS files and import them onto your website using a`<link>` tag placed between the`<head></head>` tags, like this: |
19 | 19 |
|
20 | 20 | ```html
|
21 | 21 | <head>
|
|