diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 02:18:52 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 02:18:52 +0530 |
commit | ed0acef173ae46ff7b8689b896a2913149b7da4e (patch) | |
tree | ef71f8b6e592359d4f2faaf0516a7df6fa218cbc /content/docs/resources-to-learn-programming/web-development/frontend/html-css | |
parent | a6da178e0bf5271c6224e1ca48e7ce9e79fd821c (diff) |
added a 'knowledge base'
Diffstat (limited to 'content/docs/resources-to-learn-programming/web-development/frontend/html-css')
-rw-r--r-- | content/docs/resources-to-learn-programming/web-development/frontend/html-css/_index.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/content/docs/resources-to-learn-programming/web-development/frontend/html-css/_index.md b/content/docs/resources-to-learn-programming/web-development/frontend/html-css/_index.md new file mode 100644 index 0000000..dc67f53 --- /dev/null +++ b/content/docs/resources-to-learn-programming/web-development/frontend/html-css/_index.md @@ -0,0 +1,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. |