Skip to content

Commit 766a092

Browse files
authored
Merge pull request 4GeeksAcademy#25 from jatv93/patch-1
Create README.es.md
2 parents 3995282 + 424ad22 commit 766a092

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.es.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+
El boilerplate más básico para cualquier estudiante de 4Geeks Academy utilizando el editor de código [gitpod.io](gitpod.io).
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+
## ¿Qué hacer a continuación?
10+
11+
Crea un archivo `index.html` con [la estructura básica de HTML](http://content.breatheco.de/lesson/what-is-html-learn-html#page-structure) y ve el resultado en vivo corriendo un servidor web utilizando el siguiente comando:
12+
13+
```sh
14+
$ pip3 install flask && python3 server.py
15+
```
16+
17+
- Puedes crear tantos archivos HTML cómo desees
18+
- También puedes crear archivos CSS e importarlos en tu página web utilizando una etiqueta `<link>` ubicándola entre las etiquetas `<head></head>`, de la siguiente manera:
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)