aboutsummaryrefslogtreecommitdiff
path: root/content/docs/programming-resources/web-development/frontend/html-css/_index.md
blob: dc67f53e314ee6bb06f5a6517717a5a54f84b823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
title: HTML/CSS
description: The very basics of web frontend
weight: 1
---

HTML (HyperText Markup Language) and CSS (Cascading StyleSheets) are two of the core technologies
you must learn to make websites. These two are **very** easy to learn but without these web development is totally useless.

- HTML in one video: [Video by Mike Dane](https://www.youtube.com/watch?v=pQN-pnXPaVg)
- Textual Tutorial: [W3Schools](https://www.w3schools.com/html/default.asp)
- CSS in one video: [Video by Web Dev Simplified](https://www.youtube.com/watch?v=1PnVor36_40)
- CSS Documentation: [W3Schools](https://www.w3schools.com/css/default.asp)
- Simple HTTP fileserver to host HTML files: [GoFileServer](https://github.com/MikunoNaka/GoFileServer/releases/latest)

## Fun trick

You can use GoFileServer [GoFileServer](https://github.com/MikunoNaka/GoFileServer/releases/latest)
to host the HTML files over the network, and then you can enter the URL of the server on another pc/phone on 
the same WiFi network to open the website on that device.