This commit is contained in:
19
01_grundlagen/faq/htmltagwrap.html
Normal file
19
01_grundlagen/faq/htmltagwrap.html
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>HTMLTagWrap</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section class="section-content">
|
||||||
|
<div>
|
||||||
|
<h2>Headline</h2>
|
||||||
|
<p>
|
||||||
|
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dicta atque soluta iusto, magnam voluptatem
|
||||||
|
explicabo possimus libero. Quibusdam, error voluptatum?
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
3
01_grundlagen/faq/style.css
Normal file
3
01_grundlagen/faq/style.css
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
body {
|
||||||
|
background-color: steelblue;
|
||||||
|
}
|
||||||
28
01_grundlagen/linksammlung.md
Normal file
28
01_grundlagen/linksammlung.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# Linksammlung
|
||||||
|
|
||||||
|
<https://git.gkontra.de/ptorrel/JS>
|
||||||
|
|
||||||
|
|
||||||
|
## Allgemeine Links
|
||||||
|
|
||||||
|
- [StackOverflow Survey 2023](https://survey.stackoverflow.co/2023)
|
||||||
|
- [StackOverflow Survey 2024](https://survey.stackoverflow.co/2024)
|
||||||
|
- [StackOverflow Survey 2025](https://survey.stackoverflow.co/2025)
|
||||||
|
- <a href="https://2022.stateofjs.com/en-US">State Of JS 2022</a>
|
||||||
|
- [State Of JS 2023](https://2023.stateofjs.com/en-US)
|
||||||
|
- [State Of JS 2024](https://2024.stateofjs.com/en-US)
|
||||||
|
- [State Of JS 2025](https://2025.stateofjs.com/en-US)
|
||||||
|
|
||||||
|
|
||||||
|
## Codeblock
|
||||||
|
|
||||||
|
```js
|
||||||
|
const test = 'Ich bin ein Test';
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
## Tabelle
|
||||||
|
|
||||||
|
Bezeichnung | Wert | Notiz
|
||||||
|
--- | --- | ---
|
||||||
|
Prop | Value | -
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
# Tools für die Webentwicklung
|
||||||
|
|
||||||
|
### Markdown
|
||||||
|
|
||||||
|
> **Definition:** Markdown ist eine einfache Syntax, um HTML-Code aus Textdokumenten zu generieren. Über die Markdown Syntax kann man das Schreiben von Dokumentationen und Notizen beschleunigen.
|
||||||
|
|
||||||
|
**Links zum Lernen der Markdown-Syntax**
|
||||||
|
|
||||||
|
- [Markdown-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
|
||||||
|
- [Markdown.de](http://markdown.de/)
|
||||||
|
|
||||||
|
**Markdown Editoren:**
|
||||||
|
|
||||||
|
- [Auflistung von Markdown Editoren](https://dev.to/awwsmm/state-of-markdown-editors-2019-2k49)
|
||||||
|
- [Haroopad](http://pad.haroopress.com/) (Windows)
|
||||||
|
- [Macdown](https://macdown.app/) (Mac OS)
|
||||||
|
- [Typora](https://typora.io/) (Windows | Mac OS)
|
||||||
|
- [Joplin](https://joplinapp.org/) (Windows | Mac OS)
|
||||||
|
- [Obsidian](https://obsidian.md/) (Windows | Mac OS)
|
||||||
|
- [Marp](https://marp.app/) (Windows | Mac OS)
|
||||||
|
|
||||||
|
### Emmet
|
||||||
|
|
||||||
|
> **Definition:** Die Grundfunktion von Emmet ist es mit Abkürzungen rasch HTML und CSS Code schreiben zu können. Man gibt dabei im Editor die Abkürzungen ein, drückt auf die TAB Taste und schon erscheint statt der Abkürzung eine Menge HTML Code.
|
||||||
|
|
||||||
|
- [Emmet Cheatsheet](https://docs.emmet.io/cheatsheet-a5.pdf)
|
||||||
|
- [Emmet.io](https://emmet.io/)
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# Linksammlung
|
|
||||||
|
|
||||||
<https://git.gkontra.de/ptorrel/JS>
|
|
||||||
Reference in New Issue
Block a user